Created
April 8, 2016 00:54
-
-
Save aaira-a/32b89944b98a3fd79d44ebfdac16b63d to your computer and use it in GitHub Desktop.
python selenium google search example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
driver = webdriver.Firefox() | |
driver.get("http://www.google.com") | |
input_element = driver.find_element_by_name("q") | |
input_element.send_keys("python") | |
input_element.submit() | |
RESULTS_LOCATOR = "//div/h3/a" | |
WebDriverWait(driver, 10).until( | |
EC.visibility_of_element_located((By.XPATH, RESULTS_LOCATOR))) | |
page1_results = driver.find_elements(By.XPATH, RESULTS_LOCATOR) | |
for item in page1_results: | |
print(item.text) |
автор, че за игнор ебаный?
Does the author work for you? #TypicalRussian
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
автор, че за игнор ебаный?