30 min Wait on a page and then perform any Operation using Selenium Webdriver

0 votes

Scenario: Login to an application. Perform a download operation then wait or stay on that page for 30 minutes, then again perform the download operation. Can I use implicit wait or any other option??

Apr 19, 2018 in Selenium by Martin
• 4,320 points
2,599 views

1 answer to this question.

0 votes

Implicit wait tells webdriver to poll the DOM for a certain amount of time when trying to find an element or elements if they are not immediately available. It won’t be helpful for current scenario.

You can use Thread.sleep or TimeUnit.sleep like

try {

     TimeUnit.MINUTES.sleep(30);

} catch (InterruptedException e) {

    //Handle exception

}
answered Apr 19, 2018 by Shubham
• 13,490 points

Related Questions In Selenium

0 votes
1 answer
–1 vote
1 answer
0 votes
1 answer
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,619 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,572 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,629 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,519 views
0 votes
1 answer

Downloading *.jar file from http:// seleniumhq.org using Selenium WebDriver

For Selenium Standalone Server: profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/java-archive"); If downloading ...READ MORE

answered Apr 17, 2018 in Selenium by Shubham
• 13,490 points
5,934 views
0 votes
1 answer

Handling calendar popup using Selenium WebDriver

You are selecting wrongly your elements in ...READ MORE

answered Apr 17, 2018 in Selenium by Shubham
• 13,490 points
4,165 views
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