How can I pause a text execution in python selenium webdriver

0 votes
How can I pause a text execution in python selenium webdriver?
Jul 31, 2019 in Selenium by Ankur
6,832 views

1 answer to this question.

0 votes

Hello Ankur, you can use sleep() method to pause a text execution in webdriver. Python provides sleep() method which take seconds as an input and allows you to halt the execution for a specific duration of time. You can use it this way:

from selenium import webdriver
from time import sleep

driver = webdriver.Firefox(executable_path=r"D:\geckodriver.exe")
driver.implicitly_wait(2)
driver.maximize_window()

driver.get("http://gmail.com/")

sleep(5)     #pauses the execution for 5 seconds

element = driver.find_element_by_id('email')
element.sendKeys('abc.def')

sleep(3)    #pauses the execution for 3 seconds

driver.find_element_by_id('pass').send_keys('test123')
answered Jul 31, 2019 by Renuka

Related Questions In Selenium

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

How can I create a POM test case in Selenium Webdriver?

Hey Akshay, follow these steps to create ...READ MORE

answered May 13, 2019 in Selenium by Anvi
• 14,150 points
1,216 views
0 votes
1 answer

How can I refresh a browser window in different ways using Selenium Webdriver?

Hello Piyush, you can refresh a browser ...READ MORE

answered May 29, 2019 in Selenium by Anvi
• 14,150 points
2,911 views
0 votes
1 answer

Installing Selenium Webdriver with Python package

Hey Hemant, for installing Selenium Webdriver with ...READ MORE

answered May 8, 2019 in Selenium by Anvi
• 14,150 points
15,179 views
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,708 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,606 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,680 views
0 votes
1 answer

How can I clear the text in a text box using Selenium WebDriver?

Hello Akriti, you can clear the text ...READ MORE

answered May 29, 2019 in Selenium by Anvi
• 14,150 points
6,205 views
0 votes
1 answer
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP