上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 82 下一页
摘要: 1. typeof 可以判断数据类型,它返回表示数据类型的字符串(返回结果只能包括number,boolean,string,function,object,undefined);可以使用typeof判断变量是否存在(如if(typeof a!="undefined"){...});Typeof 运 阅读全文
posted @ 2022-12-13 16:14 陈晓猛 阅读(3620) 评论(0) 推荐(0)
摘要: 严格平等 要确定字符串是否相等,可以使用严格相等运算符 。如果字符串不同,则返回,如果字符串相同,则返回 false true const s1 = 'learn'; const s2 = 'today'; console.log(s1 'learn'); // true console.log(s 阅读全文
posted @ 2022-12-13 16:11 陈晓猛 阅读(12964) 评论(0) 推荐(1)
摘要: 首先你需要知道 promise 要用then接收或者async await例如:a() 是一个Promise封装的方法 // 定义一个变量直接a() 赋值给 b let b = this.a() console.log(b) //这里就会返回 Promise {<pending>} 第一种方式 th 阅读全文
posted @ 2022-12-13 16:05 陈晓猛 阅读(686) 评论(0) 推荐(0)
摘要: 问题所在:在代码中将对象与基本类型做比较导致 if( object != '' ) //对象与字符串比较 报错 阅读全文
posted @ 2022-12-13 13:51 陈晓猛 阅读(1957) 评论(0) 推荐(0)
摘要: 选择 -> configure branch 报告生成脚本配置地址 编辑对应的脚本 #!/bin/bash set -xe # # The following could go into a dockerfile in the repo # # FROM node:14.17.1 # export 阅读全文
posted @ 2022-12-06 10:38 陈晓猛 阅读(481) 评论(0) 推荐(0)
摘要: 一、实操考核形式与技巧 确认个人信息没问题,直接开始实操 二、产品信息管理模块操作要点 1、产品上架 2、卖点提取(质量更好 不会缩水xxx) 3、图片处理(摆放顺序:正面 -> 侧面 ->背面 ->侧面) 4、产品组合(如手机+手机膜) 5、产品价格(成本+利润+运费) 选择合适的产品上架 —— 阅读全文
posted @ 2022-11-21 18:36 陈晓猛 阅读(347) 评论(0) 推荐(0)
摘要: json序列化和反序列化 json序列化:就是JavaBean对象转化为JSON格式的字符串。 反序列化:就是序列化的反方向,将字符串转化为JavaBean。 Quiker工具 序列化 可以转换后看json内容 https://getquicker.net/Sharedaction?code=2b1 阅读全文
posted @ 2022-10-11 17:30 陈晓猛 阅读(76) 评论(0) 推荐(0)
摘要: 【问题】使用webdriver.io 需要实现一个UI自动化输入input 并 回车 pageObeject import {keyboard} from "../utils/keyboard-mouse-operation"; class CommonPage { get searchInput( 阅读全文
posted @ 2022-10-11 17:08 陈晓猛 阅读(236) 评论(0) 推荐(0)
摘要: from appium.webdriver import Remote driver.keyevent(4) 比如 adb shell input keyevent 82 等价于 KEYCODE_MENU可以写一写脚本来辅助定位和操作 比如 将 adbHelper这边写出当前的deviceID 和 阅读全文
posted @ 2022-10-08 15:48 陈晓猛 阅读(211) 评论(0) 推荐(0)
摘要: 1.临时邮箱,邮箱有效不限时间 https://www.linshi-email.com/2.YOPmail 邮箱有效5日 http://www.yopmail.com/3.10分钟邮箱 邮箱有效10分钟[可无限续时10分钟] https://10minutemail.net/4.Guerrilla 阅读全文
posted @ 2022-09-28 11:23 陈晓猛 阅读(862) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 82 下一页