Answers for "logging selenium python"

1

logging in with selenium

driver.get (“URL”)
driver.find_element_by_id(“ID”).send_keys(“username”)
driver.find_element_by_id (“ID”).send_keys(“password”)
driver.find_element_by_id(“submit”).click()
Posted by: Guest on December-07-2020
0

logging python

logging.basicConfig(filename='example.log', filemode='w', level=logging.DEBUG)
Posted by: Guest on June-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language