I am currently learning Selenium in Python ,
I was Executing the following script
from selenium import webdriver
from selenium.webdriver.chrome.service import Service as ChromeService
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import *;
driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()))
driver.get("https://www.facebook.com/")
driver.implicitly_wait(10)
def timing(driver):
driver.find_element(By.CSS_SELECTOR , "input#email").send_keys("abc")
When I ran this script it was so intense , i could not see actual UI flow while executing.
is there any way to slow this down…..?
I tried adding waits but the view didnt improved much.
New contributor
Sohail M is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.