- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What are the different types of wait available in Selenium?
The different types wait available in Selenium are listed below −
Implicit wait
This is one of dynamic waits in Selenium with the Syntax as −
driver.manage().timeouts().implicitlyWait(12, TimeUnit.SECONDS);
Explicit wait
This is one of dynamic waits in Selenium with the Syntax as −
WebDriverWait w = new WebDriverWait(driver,); w.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("<<xpath expression>>")));
Fluent wait
This is one of dynamic waits in Selenium with the Syntax as −
Wait<WebDriver> w = new FluentWait<WebDriver>(driver).withTimeout(Duration.ofSeconds(30)) .pollingEvery(Duration.ofSeconds(3)).ignoring(NoSuchElementException.class);
Static wait
This is used to pause the execution for a specified amount of time.
Example
import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import java.util.concurrent.TimeUnit; import java.util.List; public class ThreadWait { public static void main(String[] args) throws InterruptedException { long start = System.currentTimeMillis(); // pause the execution 1 seconds Thread.sleep(1000); long startaftersleep = System.currentTimeMillis(); System.out.println("Sleep time in ms = "+ startaftersleep - start); } }
- Related Articles
- What are the different types of LED available?
- What are different types of access modifiers available in C#?
- What are the different types of point available in geom_point of ggplot2 package in R?
- What are the different types of DOM available to access and modify content in JavaScript?
- What are the collection types that are available in Swift?
- What are different Navigator methods available?
- What are the various waits available in Selenium with python?
- What are the different types of psychotherapy?
- What are the different types of DBMS?
- What are the different types of ISDN?
- What are the Different Types of Marketing?
- What are the different types of Respiration?
- What are the different types of fabrics?
- What are the different types of motion?
- What are the different types of solutions?

Advertisements