问题描述:用RF打开网页时未跳转到指定网址,而是显示data:,

*** Settings ***
Library SeleniumLibrary

*** Test Cases ***
Login_Test
# Open Brower
Open Browser https://www.baidu.com Chrome
[Teardown] Close Browser

原因:Chrome与Chromedriver版本不兼容导致。

解决方案:

1. 查看当前Chrome版本.

2. 从以下列表中找到对应的版本

chromedriver与chrome的对应关系表 (此表摘至https://www.cnblogs.com/wangqianqiannb/p/8884168.html)

    

3. 从网址(http://chromedriver.storage.googleapis.com/index.html)下载对应的chromedriver并更新到相应目录如 D:\Python27\Scripts.

最新文章

  1. Node.js在Chrome进行调试
  2. 7.$a = 'abcdef'; 请取出$a的值并打印出第一个字母
  3. 【转】解决编译安装NGINX时make报错
  4. android学习笔记54——ContentProvider
  5. c++学习笔记——智能指针
  6. gridControl控件动态绑定列
  7. [platform]linux platform device/driver(二)--Platform Device和Platform_driver注册过程之详细代码
  8. FastReport报表
  9. JavaScript DOM高级程序设计 4.2 事件类型--我要坚持到底!
  10. php 二维数组按照某value值求出最大值最小值
  11. java.util.concurrent.ExecutionException
  12. 图片文档倾斜矫正算法 附完整c代码
  13. canutils上板测试问题记录
  14. html-minifier中文文档
  15. 转---python os.exec*()家族函数的用法
  16. mysql 案例~ mysql故障恢复
  17. asp.net 网页拉伸 到300%不变形方法一
  18. swift OC混编工程,xcode断点调试,控制台左侧只有变量名称不显示值,右侧输入po命令,打印除一堆提示
  19. Kibana安装及使用说明
  20. version control system:git/hg/subversion/cvs/clearcase/vss。software configruation management。代码集成CI:Cruisecontrol/hudson/buildbot

热门文章

  1. Linux and Oracle常用目录详解
  2. java使用DateUtils对日期进行运算
  3. 【JMeter】【性能测试】响应信息不明确的接口做关联
  4. webmin改https访问
  5. dedecms站内搜索页面调用最新文章
  6. jsp在select中的option中编写if标签
  7. 下载apk安装包后,调用安装器自动安装apk(适配7.0)
  8. (转)Springboot邮件服务
  9. 【LeetCode每天一题】Valid Parentheses(有效的括弧)
  10. [LeetCode] 581. Shortest Unsorted Continuous Subarray_Easy tag: Sort, Stack