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()