51Testing软件测试论坛

标题: 又来求助了 [打印本页]

作者: zhang_anne    时间: 2017-4-26 11:27
标题: 又来求助了
把geckodriver安装成功。初写了个脚本如下:#  coding:utf-8

from selenium import webdriver   
from selenium.webdriver.firefox.firefox_binary import FirefoxBinary   
import  time  #调入time函数

binary = FirefoxBinary("C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe")   
driver =webdriver.Firefox(firefox_binary=binary)   

driver.get("http://www.baidu.com")

driver.find_element_by_id("kw").send_keys("Selenium2")

driver.find_element_by_id("su").click()

time.sleep(3)  
print(driver.title)  
driver.quit()  

但是执行之后,百度虽然打开了,又报了一个错误如下:
== RESTART: C:\Users\IRH-PC\AppData\Local\Programs\Python\Python36\baidu.py ==
Traceback (most recent call last):
  File "C:\Users\IRH-PC\AppData\Local\Programs\Python\Python36\baidu.py", line 12, in <module>
    driver.find_element_by_id("kw").send_keys("selenium3")
  File "C:\Users\IRH-PC\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webelement.py", line 349, in send_keys
    'value': keys_to_typing(value)})
  File "C:\Users\IRH-PC\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webelement.py", line 493, in _execute
    return self._parent.execute(command, params)
  File "C:\Users\IRH-PC\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 249, in execute
    self.error_handler.check_response(response)
  File "C:\Users\IRH-PC\AppData\Local\Programs\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 193, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: Expected [object Undefined] undefined to be a string

请大神指点一下!
作者: 掉渣饼    时间: 2017-4-26 13:28
你Firefox版本是多少,是不是因为你firefox自动升级功能没关,现在升级到了最新版本导致的;你可以安装一个低版本的firefox试试,安装完成后,把自动升级功能关了;或者你换个其他浏览器试试
作者: virginia_shi    时间: 2017-4-26 13:28
一样的问题,等大牛来解答。你的firefox 和geckodriver 版本匹配吗
作者: 梦想家    时间: 2017-4-26 13:39
我认为也是 是不是版本不匹配
作者: 清晨一缕阳光    时间: 2017-4-26 13:50
http://bbs.51testing.com/thread-1124151-1-1.html,这个帖子的问题和你一样,是浏览器版本与selenium和geckodrive驱动版本不一致造成。
作者: cq520131517    时间: 2017-4-26 13:59
你要理解这两个问题的区别:1驱动器安装路径成不成功?2.驱动器与浏览器的匹配问题(两者的版本号相互匹配)?这两个问题要同时满足,才能运行。才会不报错。。。。
作者: zhang_anne    时间: 2017-4-26 14:48
cq520131517 发表于 2017-4-26 13:59
你要理解这两个问题的区别:1驱动器安装路径成不成功?2.驱动器与浏览器的匹配问题(两者的版本号相互匹配 ...

我查了说。selenium3.3.3要firefox48以上。我是最新版的火狐浏览器53+selenium3.3.3
作者: cq520131517    时间: 2017-4-26 15:16
那你的驱动器版本号与火狐浏览器版本号配不配呢?

作者: zhang_anne    时间: 2017-4-26 16:15
cq520131517 发表于 2017-4-26 15:16
那你的驱动器版本号与火狐浏览器版本号配不配呢?

驱动器是v15的。换句话说。geckoderiverv15.0_win64+selenium_3.3 哪浏览器要多少匹配呢,只知道是firefox48以上,我下载的Firefox53也是满足条件的呀。
作者: zhang_anne    时间: 2017-4-26 16:16
virginia_shi 发表于 2017-4-26 13:28
一样的问题,等大牛来解答。你的firefox 和geckodriver 版本匹配吗

firefox 53 与个窗口driver 十五匹配吗
作者: zhang_anne    时间: 2017-4-26 17:25
掉渣饼 发表于 2017-4-26 13:28
你Firefox版本是多少,是不是因为你firefox自动升级功能没关,现在升级到了最新版本导致的;你可以安装一个 ...

firefox版本换成52,已经成功了。终于搞定了呢。都好几天了。我也是醉了。不容易




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2