diff --git a/google.py b/google.py index 098d915..0385e4b 100644 --- a/google.py +++ b/google.py @@ -8,7 +8,7 @@ search_query = input("Enter whatever you want to google : ") browser = webdriver.Firefox() browser.get('http://google.com/') - +# google searchBox = browser.find_element_by_xpath('/html/body/div/div[3]/form/div[2]/div/div[1]/div/div[1]/input') searchBox.send_keys(search_query) searchBox.send_keys(Keys.RETURN)