0

i am trying to open Google website by selenium using python language. Here It invoking Firefox browser but unable to paste the URL , i think the version which i am using is not supported

i am using selenium v2.35 and Firefox 10.0

Is these both are compatible or else please suggest me which Firefox version i have to install

I used the following code to invoke the browser

 from selenium import webdriver

    def Main():

        driver=webdriver.Firefox()
        driver.maximize_window()
        url = driver.get("http://google.com")

    Main()
4

1 回答 1

0

根据这个 changelog,直到 23 的 Firefox 版本由 selenium 2.35 支持。

尝试将您的 Firefox 更新到任何大于 12 且小于 24 的版本。它应该可以按预期工作。

于 2013-10-18T11:38:15.193 回答