-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTest3.java
More file actions
38 lines (26 loc) · 1.04 KB
/
Test3.java
File metadata and controls
38 lines (26 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package javascriptexecutor;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.FluentWait;
import io.github.bonigarcia.wdm.WebDriverManager;
public class Test3 {
public static void main(String[] args) {
WebDriverManager.chromedriver().setup();
WebDriver driver=new ChromeDriver();
driver.manage().window().maximize();
driver.get("https://skillrary.com/");
driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
FluentWait wait = new FluentWait(driver);
wait.withTimeout(500, TimeUnit.MILLISECONDS);
wait.pollingEvery(250, TimeUnit.MILLISECONDS);
wait.ignoring(NoSuchElementException.class);
WebElement w = driver.findElement(By.name("q"));
wait.until(ExpectedConditions.visibilityOf(w));
w.sendKeys("selenium");
}
}