{{theTime}}

Search This Blog

Total Pageviews

The constructor WebDriverWait(WebDriver, Duration) is undefined

It is deprecated. Instead creating the WebDriverWait object, use like below

WebElement element = new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.xpath("//a/h5")));

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...