摘要: 当你的selenium WebDriver 启动IE11报这个错时:Unable to find element on closed window (WARNING: The server did not provide any stacktrace information),通过Google解决了 阅读全文
posted @ 2016-11-06 23:51 热爱技术的小牛 阅读(3710) 评论(0) 推荐(0)
摘要: 麻烦大家看了我的文章觉得有用就关注我下,给我评论下,给我建议,相互学习,谢谢!!!也可以把一些好的东西分享给我哈。。。。。 阅读全文
posted @ 2016-11-03 08:32 热爱技术的小牛 阅读(144) 评论(0) 推荐(0)
摘要: 要了解当前安装的版本是否为最新版本,请访问 插件检查页面http://www.mozilla.com/plugincheck/ ,如果该页面告诉你 Flash 插件需要更新,请手动安装最新版本。 使用firefox访问adobe官网安装,网址http://get.adobe.com/cn/flash 阅读全文
posted @ 2016-10-24 09:09 热爱技术的小牛 阅读(215) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-10-23 18:25 热爱技术的小牛 阅读(4) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-10-23 08:48 热爱技术的小牛 阅读(10) 评论(0) 推荐(0)
摘要: 我解决了!!!from selenium import webdriverimport timedr = webdriver.Firefox(executable_path = '/Users/jinwenxin/desktop/pythonPractice/geckodriver')time.sl 阅读全文
posted @ 2016-10-23 08:34 热爱技术的小牛 阅读(7080) 评论(0) 推荐(0)
摘要: 1、火狐、谷歌和IE浏览器引擎都要重新下载selenium官网引擎,并设置路径才可以支持selenium3 而狐火用自己的引擎不用设置路径既可以支持selenium2也支持selenium3,谷歌和IE就不行 package Testpakage; import org.openqa.seleniu 阅读全文
posted @ 2016-10-22 21:57 热爱技术的小牛 阅读(945) 评论(0) 推荐(0)
摘要: 解决办法全在这个链接里 http://learn-automation.com/use-firefox-selenium-using-geckodriver-selenium-3 阅读全文
posted @ 2016-10-22 20:40 热爱技术的小牛 阅读(876) 评论(0) 推荐(0)
摘要: The major change in Selenium 3.0 is we’re removing the original Selenium Core implementation and replacing it with one backed by WebDriver. This will 阅读全文
posted @ 2016-10-22 14:03 热爱技术的小牛 阅读(236) 评论(0) 推荐(0)
摘要: 报这个错,是因为你使用了selenium3+Firefox。在selenium3中,使用Firefox,需要添加驱动。 您可以从Github上下载驱动程序下载网址- https://github.com/mozilla/geckodriver/releases/tag/v0.9.0 在代码中加入 S 阅读全文
posted @ 2016-10-22 10:10 热爱技术的小牛 阅读(18155) 评论(6) 推荐(2)
热爱技术的小牛