0

条件の待機中にタイムアウトになると、非常に役に立たないメッセージが表示されます。

Tests in error: 
    myTestName(mySuiteName): Timed out after 10 seconds waiting for              
    com.mycompany.qa.core.SeleniumWebTesting$$anon$1@6818c458

Scalaコードは次のとおりです。

  def pageContains(locatorType: String, content: String) {
    locatorType match {
      case "TagName" =>
        val tag = new WebDriverWait(driver, defaultWait).until(
          new ExpectedCondition[Boolean] {
// it times out on this line below, but I can't send out any assert failure or useful message
            override def apply(driver: WebDriver) = driver.findElement(By.tagName(content)).isDisplayed
          }
        )
      case _ =>
        throw new UnsupportedOperationException("No valid locator strategy received (try a valid one, like class name)")
    }
  }
4

2 に答える 2

3

withMessage()メソッドを使用できます。

WebDriverWait wait = new WebDriverWait(driver, timeout);
wait.withMessage("Your desired Message");
wait.until(new ExpectedConditions(boolean));
于 2012-11-08T05:05:10.143 に答える
0

scala を使用している場合、http://code.google.com/p/driveby/で大きな成功を収めています。

于 2012-11-08T08:42:12.167 に答える