selenium报错汇总

报错:[error] Could not connect to Selenium Server. Have you started the Selenium Server yet?

解决:selenium两种驱动方式,一是use selenium IDE,一种是use selenium webdriver。在options里去掉勾选enable webdriver playback即可。

Google答案地址。

http://sqa.stackexchange.com/questions/10024/error-could-not-connect-to-selenium-server-have-you-started-the-selenium-server

问题:seleniumIDE录制时遇到新开窗口的链接_blank,回访时会出现焦点扔停留在旧窗口下,无法操作新窗口,报错无法找到页面元素?

解决:使用selectPopUp命令,选择弹出窗口,然后继续下一步操作即可。

报错:raceback (most recent call last):

File "C:\Users\Administrator\Desktop\selenium\chrome.py", line 4, in <module>

driver=webdriver.Firefox()

File "C:\Python27\lib\selenium\webdriver\firefox\webdriver.py", line 59, in __init__

self.binary, timeout),

File "C:\Python27\lib\selenium\webdriver\firefox\extension_connection.py", line 47, in __init__

self.binary.launch_browser(self.profile)

File "C:\Python27\lib\selenium\webdriver\firefox\firefox_binary.py", line 66, in launch_browser

self._wait_until_connectable()

File "C:\Python27\lib\selenium\webdriver\firefox\firefox_binary.py", line 105, in _wait_until_connectable

raise WebDriverException("Can‘t load the profile. Profile "

WebDriverException: Message: Can‘t load the profile. Profile Dir: %s If you specified a log_file in the FirefoxBinary constructor, check it for details.

解决:外国网友说是selenium和firefox不兼容,需要倒退firefox的版本

http://stackoverflow.com/questions/6682009/selenium-firefoxprofile-exception-cant-load-the-profile

报错:[error] Could not connect to Selenium Server. Have you started the Selenium Server yet?

解决:启用服务java -jar C:\seleniumRC\selenium-server-1.0.3\selenium-server-standalone-2.45.0.jar

如果启用失败,查看端口netstat -ano 关闭被占用的端口。

时间: 2025-01-06 11:26:21

selenium报错汇总的相关文章

eclipse 报错汇总

1.Eclipse 启动时,报错: Fail to create the java virtual machine 已解决.方法:eclipse.ini 中-vmargs-Dosgi.requiredJavaVersion=1.6-Xms40m修改-Xmx768m → -Xmx512meclipse 报错汇总,布布扣,bubuko.com

windows使用pip安装selenium报错问题

UnicodeDecodeError: 'ascii' codec can't decode byte 0xb9 in position 7: ordinal not in range(128) 这是编码问题,需要在你的python安装目录下 这是我的安装目录C:\Python27\Lib\site-packages 添加sitecustomize.py文件 文件内容添加 import sys sys.setdefaultencoding('gb2312') 之后在执行pip install -

CentOS 6.5 安装YouCompleteMe 报错汇总

支持折腾!!! 编译安装clang 3.6.0   编译器版本低 ====-----编译安装clang 3.6.0   编译器版本低---------------============== [[email protected] llvm-3.6.0]$ tar xf cfe-3.6.0.src.tar.xz  [[email protected] llvm-3.6.0]$ tar xf clang-tools-extra-3.6.0.src.tar.xz  [[email protected]

使用apache benchmark(ab) 测试报错汇总

1.socket: Too many open files (24) 解决方法: [[email protected] ~]# ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimited pending signals (-i) 14802 max locked memory (kby

masterha_check_repl报错汇总

[[email protected] ~]#masterha_check_repl --conf=/etc/masterha/app1.cnf 导致如下报错的原因主要有两类: 1.mysql的安装时用源码安装,导致mysql的目录与MHA默认的目录不一致.解决办法用ln -s做相关软连接.注:我的mysql数据库是用mysql用户安装的,MHA是用root用户安装的,如果在同一个用户下安装不知是否可以避免此类问题 2.candidate_master对应的用户权限不足导致. 以下内容摘自网络 报

SQL Server报错汇总

1)SQL Server服务突然无法启动 问题描述:之前一直没有问题,突然某天无法启动了 解决办法:查看控制面板->管理工具->事件查看器,发现是因为登录失败而无法启动. 找到原因,就简单了,从服务中找到SQL Server的服务,右键属性,然后打开"登录"tab页,选上本地系统,就OK了. 该问题多半是因为更改了操作系统的登录密码造成了.所以要更新sqlserver的账户登录密码.当然,最好的方式就是就是上面的觪决办法了. 这样以后就会自动更新. 2)17051错误 代码

P2V 报错汇总

本文所记录的报错,是笔者操作中遇到的,如果没有在本文中没有你操作中的错误,还是查看日志/var/log/    会有virt-p2v8897877989.log  等这样的日志. P2v 报错 virsh pool-define-as kvm_final --type dir --target /kvm/ pool kvm_final defined error: Failed to reconnect to the hypervisor error: no valid connection e

编译器报错汇总

1.arm7 arm7s 真机32位处理器 arm64  真机64位处理器 2.i386 模拟器32位处理器   x86_64模拟器64位处理器 3.linker .o  可能有依赖库未导入 , 库重复导入: 4.libsqlite3 数据库 今天试了一下iPhone Sqlite3数据库实例操作,发现一个有意思的问题,就是在加Framework时,有些教程说加libsqlite3.dylib有些说加libsqlite3.0.dylib,那到底加哪个呢?经过百度和谷歌得答案如下: 实际上libs

Puppet报错汇总

报错1: 解决:该报错是由于Puppet agent 的时间和Puppet master的时间不一致导致,可以使用ntp同步一下时间即可解决 报错2: 启动mcollective的时候报错 解决:gem install stomp cp -fr  /usr/lib/ruby/gems/1.8/gems/stomp-1.3.2/lib/stomp.rb   /usr/lib/ruby/site_ruby/1.8/mcollective/connector/ 来自为知笔记(Wiz) 原文地址:htt