selenium
sky_alina
热爱工作!
展开
-
IE“This is the initial start page for the WebDriver server.”
这个问题是一个童鞋遇到的,外包华为的上不了网,我帮忙百度的,就此记录一下。现像: IE能启动但时提示“This is the initial start page for the WebDriver server.”报错: Exception in thread "main" org.openqa.selenium.remote.SessionNotFound...原创 2015-05-26 16:04:22 · 1077 阅读 · 0 评论 -
记录测试用例中使用绝对路径遇到的问题
我本人比较喜欢相对路径,因为很多时候不同系统下使用绝对路径复用性太差。问题描述:执行某个项目的所有测试用例的时候,遇到读取某个目录下面的文件,使用相对路径有时候达不到效果比如如下结构:test_project test_case pub init.py public.py t...原创 2015-06-08 10:56:16 · 592 阅读 · 0 评论 -
Error forwarding the new session cannot find : Capabilities [{browserName=htmlun
代码:driver = webdriver.Remote( command_executor=' http://127.0.0.1:4444/wd/hub', desired_capabilities={'platform': ...2015-06-12 11:05:19 · 904 阅读 · 0 评论 -
Unable to start phantomjs with ghostdriver.
plantomjs最初是放在D:\\phantomjs\\bin\\phantomjs.exe 环境变量也添加了,各种尝试都是如下错误:error:selenium.common.exceptions.WebDriverException: Message: Unable to start phantomjs with ghostdriver.Screenshot: available ...2015-06-12 16:37:12 · 1613 阅读 · 0 评论 -
firefox运行时弹出安装向导
问题描述:使用selenium.webdriver调用firefox运行脚本的时候,打开浏览器时总是弹出安装向导解决方法:修改C:\Users\Administrator\AppData\Roaming\Mozilla\Firefox\profiles.ini 文件修改如下红色部分代码的值为0: [Profile0] Name=default ...原创 2015-06-16 14:52:43 · 154 阅读 · 0 评论 -
Webdriver Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms
带的小弟遇到这个问题不知所措就找我解决,记录一下。执行如下代码,chrome和IE都OK,执行火狐就挂了。#浏览器数组lists = ['chrome','internet explorer','firefox']#循环浏览器执行脚本 for browser in lists: print browser driver = Remote(command_exec...2015-06-25 11:57:15 · 481 阅读 · 0 评论 -
pkg_resources.DistributionNotFound
1.pip install lettuce2.lettuce的时候报错了 信息主要是:pkg_resources.DistributionNotFound解决方案: pip install -U setuptools3.继续lettuce c:\Python27\Lib\site-packages>lettucec:\Python27\lib\site-...原创 2015-06-29 17:22:10 · 782 阅读 · 0 评论 -
IEWebdriver 启动出错
Started InternetExplorerDriver server (64-bit)2.42.0.0Listening on port 29792Exception in thread "main" org.openqa.selenium.remote.SessionNotFoundException: Unexpected error launching Internet...原创 2015-12-14 14:38:06 · 337 阅读 · 0 评论 -
selenium 面试题总结
1.selenium中如何判断元素是否存在?2.selenium中hidden或者是display = none的元素是否可以定位到?3.selenium中如何保证操作元素的成功率?也就是说如何保证我点击的元素一定是可以点击的?4.如何提高selenium脚本的执行速度?5.用例在运行过程中经常会出现不稳定的情况,也就是说...原创 2016-03-16 17:01:46 · 272 阅读 · 0 评论