Skip to content

yairfax/easyselenium

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Easy Selenium

Easy Selenium is a package with utility functions to make Selenium easier to use.

The most useful function in this package is click_and_wait(btn), which clicks on the provided button and then waits until the next page loads.

from selenium import webdriver
from easy_selenium import *

driver = webdriver.Chrome()
driver.get("https://www.google.com")

btn = driver.find_element_by_id("login")
click_and_wait(btn)

About

A package with some Selenium utility functions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published