RIDE
原点点
这个作者很懒,什么都没留下…
展开
-
Robot Framework(RIDE)使用Chrome浏览器打开URL后报错:Cannot navigate to invalid URL
浏览器版本:Chrome 65.0.3325.146(正式版本) (64 位)问题:WebDriverException: Message: u'unknown error: unhandled inspector error: {"code":-32000,"message":"Cannot navigate to invalid URL"}\n (Session info: chrome=6...原创 2018-04-08 14:56:09 · 4049 阅读 · 2 评论 -
RIDE--元素定位
name方式 name=wd //不要引号 id方式 id=kw //不要引号 xpath 绝对路径 Xpath = /html/body/div[1]/div[4]/div[2]/div/form/span[1]/input //不推荐,一旦路径稍做改动,就会报错 相对路径 xpath=//*[@id="su"] xpath=//*[@id="su...转载 2018-07-16 18:10:27 · 3663 阅读 · 1 评论 -
RIDE--读取文件中的内容
1.导入OperatingSystem 2.导入的文件格式为utf-8形式,若非uft-8,则需要enconfing标注编码格式 4.读取文件 ${CURDIR}获取当前路径,此处为获取当前用户的当前路径,【\\..】为返回上一级目录 ...原创 2018-07-16 18:24:23 · 2582 阅读 · 0 评论 -
python :UnicodeDecodeError: 'utf8' codec can't decode byte 0xc2 in position 0: invalid continuation
python :UnicodeDecodeError: 'utf8' codec can't decode byte 0xc2 in position 0: invalid continuation byte 解决时参考的: https://www.cnblogs.com/apple2016/p/5849412.html 本地python IDLE环境执行print ACTUAL_...转载 2018-12-10 18:09:36 · 3704 阅读 · 0 评论 -
安装AutoItLibrary时报错:Ruturned non-zero exit status 5
问题:安装AutoItLibrary时报错,如下 解决方案: 管理员来启动命令行,点击开始,输入cmd,然后在弹出的程序上点击右键,选择以管理员身份运行。 然后在这个cmd命令行中进入AutoItLibrary的安装目录,重新运行python setup.py install来进行安装,问题解决。 参考:https://testerhome.com/topics/3865?...原创 2019-04-28 12:49:01 · 876 阅读 · 0 评论