wxy5g5g 发表于 2013-5-8 17:17:57

selenium问题是只能打开firefox浏览器,不能访问网址。

1.JDK下载:http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html(按照自己电脑的配置及系统下载)
2.selenium RC下载:http://docs.seleniumhq.org/download/
3.下载python2.7:http://www.python.org/ftp/python/2.7.2/python-2.7.2.msi
4.解压缩selenium-2.28.0.tar.gz. 把selenium整个文件夹放入Python27\Lib\site-packages目录下。
5. 打开cmd后,cd打开selenium-server-standalone-2.31.0.jar 存在的目录,输入java -jar selenium-server-standalone-2.31.0.jar


test.py:
from selenium import webdriver

browser = webdriver.Firefox() # 打开火狐浏览器
browser.get("http://www.baidu.com") # 登录百度首页

可以打开浏览器,但是无法登陆百度首页,请问这是什么原因???

jayowenhui 发表于 2013-5-9 12:36:47

是不是浏览器的安全设置问题

wxy5g5g 发表于 2013-5-9 13:19:05

回复 2# jayowenhui


    这个问题解决了,是浏览器设置了代理,但是,我的selenium server在浏览器打开和被操作的过程中没有log记录,这个是怎么回事呢?

zhouxuan623 发表于 2013-5-21 16:20:20

回复 3# wxy5g5g

请教下具体的操作 和你错误的具体信息 ,我现在也是能打开浏览器,但是不能访问url弄了好久也没弄好

shijin880921 发表于 2013-5-24 13:54:12

首先先判断下你的 FF是不是最新版的,通常最新版的都不支持。 建议下载个版本较低的,然后自己的jar包,引入较新的。 把火狐的自动升级关闭。

zhengxuesheng 发表于 2013-7-9 16:27:34

我的问题也是一样,浏览器能打开,但是打开之后就没反应了
selenium-2.33.0
firefox 21.0
-----------------------------
# coding = utf-8
from selenium import webdriver

browser = webdriver.Firefox()

browser.get("http://www.baidu.com")
browser.find_element_by_id("kw").send_keys("selenium")
browser.find_element_by_id("su").click()
browser.quit()
下面是我发现的一些错误日志
------------------------------------------------------------------------------------------
Python 2.7.5 (default, May 15 2013, 22:43:36) on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>>

Traceback (most recent call last):
File "C:\Documents and Settings\xuzheng\桌面\mail.py", line 5, in <module>
    driver = webdriver.Firefox()
File "C:\Python27\lib\site-packages\selenium\webdriver\firefox\webdriver.py", line 62, in __init__
    desired_capabilities=capabilities)
File "C:\Python27\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 72, in __init__
    self.start_session(desired_capabilities, browser_profile)
File "C:\Python27\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 116, in start_session
    self.session_id = response['sessionId']
KeyError: 'sessionId'
>>> ================================ RESTART ================================

Test_s 发表于 2013-7-9 22:40:39

这个问题通常是因为FF浏览器版本太高了

叫你你敢答应么 发表于 2013-8-14 13:20:33

我也遇到这个问题啦,代码在家里能够运行,但是在公司就不行,公司是用代理上网, 请问具体怎么解决啊??????????

hqf007 发表于 2013-11-14 16:59:44

浏览器版本问题,不能太高

amyxiaotu 发表于 2013-12-5 13:34:30

这个问题我遇到过,firefox默认使用的是IE的设置,在IE上把"访问本地网络不使用代理"的钩钩上,就firefox可以访问百度了,感觉比较奇怪,但这样弄确实能好。

gaha 发表于 2013-12-5 16:51:45

selenium,我用了很久的3.6版ff。

spartan 发表于 2013-12-16 14:50:30

在公司里边,需要设置Firefox的代理,才能访问被测试的网站。selenium的代码如下: 将墙面两行的xx改成你们公司的IP地址和端口号即可。

String proxyIp = "xx.xx.xx.xx";
int proxyPort = xx;
FirefoxProfile profile = new FirefoxProfile();
// 使用代理
profile.setPreference("network.proxy.type", 1);
// http协议代理配置
profile.setPreference("network.proxy.http", proxyIp);
profile.setPreference("network.proxy.http_port", proxyPort);

profile.setPreference("network.proxy.ssl", proxyIp);
profile.setPreference("network.proxy.ssl_port", proxyPort);
   
// 所有协议公用一种代理配置,如果单独配置,这项设置为false
profile.setPreference("network.proxy.share_proxy_settings", true);
   
// 对于localhost的不用代理,这里必须要配置,否则无法和webdriver通讯
profile.setPreference("network.proxy.no_proxies_on", "localhost");
   
// 以代理方式启动firefox
FirefoxDriver driver= new FirefoxDriver(profile);

skynothing 发表于 2013-12-26 17:29:14

留名。。。版本太高了,也不好啊

pgaier 发表于 2014-10-9 11:46:08

zhengxuesheng 发表于 2013-7-9 16:27
我的问题也是一样,浏览器能打开,但是打开之后就没反应了
selenium-2.33.0
firefox 21.0


请问这个问题你最后解决了吗   

shero11 发表于 2015-1-20 12:45:33

wxy5g5g 发表于 2013-5-9 13:19
回复 2# jayowenhui




请问是怎么解决的呢??

tx364294934 发表于 2015-12-11 10:09:58

wxy5g5g 发表于 2013-5-9 13:19
回复 2# jayowenhui




怎么解决的呢?我也遇到同样问题,在我本机好好的,就在另外一台电脑不能访问网页。只能定位到

driver =new FirefoxDriver(); 这行代码,然后就不运行了。

sunshine1234 发表于 2015-12-11 21:34:04

tx364294934 发表于 2015-12-11 10:09
怎么解决的呢?我也遇到同样问题,在我本机好好的,就在另外一台电脑不能访问网页。只能定位到

driver ...

你现在解决了吗

extendss 发表于 2016-1-20 16:21:03

怎么解决的呢。。。??

jyumei 发表于 2016-2-22 17:40:43

我也是相同的问题,请问怎么解决

山丘的测试之道 发表于 2016-3-3 23:21:30

贴一下报错信息,或者查看下报错信息中是否包含127.0.0.1
若是,原因是selenium版本与FF版本不匹配导致
页: [1] 2
查看完整版本: selenium问题是只能打开firefox浏览器,不能访问网址。