codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Python Selenium Tutorial 2021

Renaissance Engineer
codeburst
Published in
9 min readMar 18, 2021

--

What is Selenium

Video Tutorial

Setup

Selenium Basics

Working with Web Elements in Selenium

Finding elements with Selenium Webdriver

Order of priority for selectors

Returning multiple elements

Finding nested elements

Using dev tools to speed up Selenium development time

Interacting with web elements using Selenium

Making a Reddit Bot

frame = driver.find_element_by_class_name(‘_25r3t_lrPF3M6zD2YkWvZU’)
driver.switch_to.frame(frame)

Create Selenium Automations without Code using Selenium IDE

Testing with Selenium

Selenium Grid

Advanced Selenium Topics

Waiting for dynamic Javascript elements

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://somedomain/url_that_delays_loading")
try:
element = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.ID, "myDynamicElement"))
)
finally:
driver.quit()

Selenium Options and Capabilities

Use Browser Extensions

Action Builders and Action Chains

Storing cookies

File Uploads

Selenium 4 Updates

Conclusion

--

--

Responses (3)