python what is selenium code example

Example 1: selenium python

from selenium import webdriver
from selenium.webdriver.common.keys import Keys

driver = webdriver.Firefox()
driver.get("http://www.python.org")
assert "Python" in driver.title
elem = driver.find_element_by_name("q")
elem.clear()
elem.send_keys("pycon")
elem.send_keys(Keys.RETURN)
assert "No results found." not in driver.page_source
driver.close()

Example 2: what is selenium python

# SELENIUM:
# - python library
# - opens up your browser and physically interacts with elements
# - used for task automation and web scraping