站内搜索

升级 selenium 3.3.0 后报错解决办法

升级 selenium 3.3.0 后报错解决办法

sudo pip install --upgrade seleniumIn [4]: import seleniumIn [5]: selenium.versionOut[5]: '3.3.0'

执行测试时报错如下:

swot@pp:~/pp/superlists$ python manage.py test functional_tests.tests.NewVisitorTest.test_layout_and_stylingCreating test database for alias 'default'...E======================================================================ERROR: test_layout_and_styling (functional_tests.tests.NewVisitorTest)----------------------------------------------------------------------Traceback (most recent call last):  File "/home/swot/pp/superlists/functional_tests/tests.py", line 123, in test_layout_and_styling    inputbox.location.get('x') + inputbox.size['width']/2,  File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/webelement.py", line 403, in location    new_loc = {"x": round(old_loc['x']),TypeError: 'NoneType' object has no attribute 'getitem'----------------------------------------------------------------------Ran 1 test in 4.378sFAILED (errors=1)Destroying test database for alias 'default'...

原因是:Selenium 3.3.0 requires geckodriver 0.15 due to changes in command response values

wget https://github.com/mozilla/geckodriver/releases/download/v0.15.0/geckodriver-v0.15.0-linux64.tar.gztar xzvf geckodriver-v0.14.0-linux64.tar.gzsudo cp geckodriver /usr/local/binpython manage.py test functional_tests.tests.NewVisitorTest.test_layout_and_stylingCreating test database for alias 'default'....----------------------------------------------------------------------Ran 1 test in 5.307sOKDestroying test database for alias 'default'...

参考官网说明:

94a1024.png

以上就是升级 selenium 3.3.0 后报错解决办法的详细内容,更多请关注php中文网其它相关文章!

  • 上一篇:selenium设置窗口大小不准确,终于解决
  • 下一篇:微信公众号创建个性化菜单报“65305个性化菜单数量受限”解决办法