我知道Java中有等待的类型
隐式等待
driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS)
显式等待-
WebDriverWait wait = new WebDriverWait(driver, explicitWaitSec);
wait.until(ExpectedConditions.elementToBeClickable(element));
流利的等待-
Wait<WebDriver> wait = new FluentWait<WebDriver>(driver)
.withTimeout(30, TimeUnit.SECONDS)
.pollingEvery(5, TimeUnit.SECONDS)
.ignoring(NoSuchElementException.class);
,但我感到困惑的是,哪种等待条件和预期条件会最接近Robot Framework中的“等待页面包含”关键字?
解决方法:
没有直接的模拟,这是在Robot Framework中明确开发的功能.
同时,您可以使用ExpectedCondition的presenceOfElementLocated()进行显式/流畅的等待(后者只是第一个的可定制版本,btw).
对于定位器,请使用以下xpath:
//*[contains(., "Your Text Here")]
这就是Robotf Framework actually does,我必须非常聪明地承认.