"Total tests run: 0, Failures: 0, Skips: 0" This means that there were no tests executed at all. Check your test's code. suspect you are using a wrond @Test annotation (org.junit.Test instead of org.testng.annotations.Test) 将工程import的 org.junit.…
产生下面的原因是因为:与uiautomator2的weditor冲突,两者不能同时使用. 有时打开appium时会报错: [UiAutomator] UiAutomator exited unexpectedly with code 0, signal null 经查询有以下方案: <UiAutomator exited unexpectedly with code 0>重启手机 再重新连接就可以了!…
CentOS内核,对应的文件是/proc/sys/kernel/watchdog_thresh.CentOS内核和标准内核还有一个地方不一样,就是处理CPU占用时间过长的函数,CentOS下是watchdog_timer_fn()函数. 如果你的内核是标准内核的话,可以通过修改/proc/sys/kernel/softlockup_thresh来修改超时的阈值 参考文献:https://zhidao.baidu.com/question/1829924822713415300.html 首先,这…
运行 puppeteer 报错 chrome: error while loading shared libraries: libpangocairo-1.0.so.0: cannot open shared object file: No such file or directory [root@eus_aps_crawler01:/data/www/vhosts/aps_task/httpdocs]# node test.js (node:5490) UnhandledPromiseReje…
create-react-app 创建的项目执行npm run eject后,运行报错:Cannot find module '@babel/plugin-transform-react-jsx-source' 解决方法: 1.删除node_modules文件 2.执行yarn重新安装项目依赖 3.npm start 运行项目即可…
报错:Unable to open debugger port (127.0.0.1:63959): java.net.SocketException "socket closed",编译过来就是无法打开调试器端口,套接字已关闭 这台笔记本操作系统是win10专业工作站版,debug启动项目,provide项目完美启动成功,然后consumer项目报错:Unable to open debugger port (127.0.0.1:63959): java.net.SocketExce…
step1: 访问 https://search.maven.org/  搜索下载相关jar包 step2: 访问 http://maven.outofmemory.cn/info.cukes/cucumber-html/0.2.3/  下载  cucumber-html-0.2.3.jar step3: 导入以上JAR 包 .并配置 Junit环境(Add  library -> Junit4) Run as -Junit Test 时,会运行失败,如下报错 : 解决方法1:junit 4.0…
由于chrome浏览器自动更新,导致 macaca运行报错,重新安装和更新chrome-driver 之后,还需要把chrome浏览器降级到50版本: 但是chrome会自动更新,所以需要禁止.找到这个方法试验一下: 下面内容转自:http://www.chromi.org/archives/11523 自动更新是 Chrome 非常实用的功能之一,但在有些情况下可能还是有关闭自动更新的需求,比如需要用某一个具体的版本来测试一些东西,或者更新之后反而出现了新的 Bug等等.由于一般人没有这样的需…
Heka 编译安装后 运行报错 panic: runtime error: cgo argument has Go pointer to Go pointer 解决办法: 1.  Start hekad with the GODEBUG variable exported in its environment: export GODEBUG=cgocheck=0 2. 之后出现如下报错,找不到lua文件 2017/01/16 10:33:38 Decoder 'MemStats-MemStats…
调用react-native-fs插件时,如果数据的接口是需要验证信息的,在android上运行报错,而在iOS上运行没问题.原因是因为接口是有验证信息的,而调用这个插件时没有传入,在iOS上会自动加上验证信息,而 android需要手动设置. 此错误的解决方法: 1.在调用登录接口时,保存下cookie(cookie在response里),在调用react-native-fs时放在headers里传入,代码如下: _appLogin(userName, password, callback){…