Selenium WebDriver.get(url) does not open the URL

前端 未结 18 1967
醉梦人生
醉梦人生 2020-11-29 07:36
from selenium import webdriver
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.support.ui impo         


        
18条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-29 07:47

    I was facing exactly the same issue, after browsing for sometime,I came to know that it is basically version compatibility issue between FireFox and selenium. I have got the latest FireFox but my Selenium imported was older which is causing the issue. Issue got resolved after upgrading selenium

    pip install -U selenium
    

    OS: windows Python 2.7

提交回复
热议问题