前言 之前一直用的appium1.4版本,最近升级到了1.6突然发现之前的脚本好多都跑失败了,一看报错: selenium.common.exceptions.InvalidSelectorException: Message: Locator Strategy 'name' is not supported for this session 查了资料才发现,在appium1.5之后,by name的这种定位方式已经彻底移除...脑阔疼,又要大改代码了. 突然想到之前通过name定位的方法,被我…
很多网友可能都遇到过这样的问题,在ie升级后,无法打开,必须以管理员身份运行.今天我也遇到了这个问题.最终找到了解决办法. 1.Win + R 2.输入 regedit,定位到 HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main  3.右键点击Main >> 权限 >>  高级 >>  4.勾选如下图中的复选框:  …
使用appium1.8 ,启动app过程中报错: 2018-05-08 17:09:16:890 - [W3C] Encountered internal error running command: Error: [100%] /data/local/tmp/UnicodeIME-debug.apk 2018-05-08 17:09:16:890 - [W3C] /usr/local/lib/node_modules/appium/node_modules/_appium-android-im…
当我们yum命令的时候,会提示 "File "/usr/bin/yum", line 30 except KeyboardInterrupt, e: ^ SyntaxError: invalid syntax" 可能是升级python引起的,yum是用python作为解释器的. 1.当我们输入任何yum命令,都会报错.原因是升级python后,导致yum所需版本不一致导致!   2.如图,我将python版本编译安装python3.3.0.将3.3链接到/usr/b…
升级了系统 命令行不能用了 xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun 解决方法,重装xcode command line: xcode-select --install 还挺大的,cdn做的很好 High Sierra,终端里使用git的时…
最近升级了mac系统,然后接着写代码就出问题了. 报错信息如下: xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun 查了大量资料都推荐重新安装xcode,用如下命令: $ xcode-select --install 但是我用了这条命令也没法,然后…
The issue is that the cocoapods have not been built for arm64 architecture yet thus they cannot be linked when you build them. Likely you cannot use those packages until they are updated and use that architecture. You can fix the linker error by goin…
有时候使用fiddler时,https页面会出现错误提示,我们可以这样设置来避免错误 第一步:去掉https的抓取 Tools>Option 去掉Capture HTTPS CONNECTs 的勾选 第二步:找到浏览器的设置项(以360浏览器为例) 选择 管理HTTPS/SSL 证书 将证书下的所有DO_NOT_TRUST_FIDDER证书都删掉即可…
在自己的guodersert.vim中添加下面一行即可 hi CursorLineNr term=bold cterm=NONE ctermfg=darkgreen gui=bold guifg=Yellow hi CursorLineNr term=bold cterm=NONE ctermfg=white gui=bold guifg=Yellow 以下片段实现了Python代码超过120个字符时改变背景颜色 augroup vimrc_autocmds      autocmd!     …
appium1.5后不支持find_element_by_name元素定位方法,会抛如下错误 org.openqa.selenium.InvalidSelectorException: Locator Strategy 'name' is not supported for this session 解决方法如下: 找到appium\node_modules\appium-android-driver\build\lib\driver.js 文件,修改以下内容,增加'name' mac在(/us…