{{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:

Generate Insert Sql from Select Statement

SELECT 'INSERT INTO ReferenceTable (ID, Name) VALUES (' +        CAST(ID AS NVARCHAR) + ', ''' + Name + ''...