While writing automated tests using GEB framework, may I use the Webdriver API's directly? For example, some thing like as below:
WebElmenent element=driver.findElement(By.xpath("//input..."))
WebElement myDynamicElement = (new WebDriverWait(driver, 10))
.until(ExpectedConditions.visibilityOf(element));
Is it possible to use the WebDriver API's directly as above?
Thanks,
Raghuveer.