1

OpenTest 是否支持指定隐式等待元素位置或页面加载?

4

1 回答 1

1

您不需要在 OpenTest 中使用隐式等待。所有关键字都知道如何等待与之交互的 UI 元素。在幕后,OpenTest 使用显式等待,您可以在必要时通过设置explicitWaitSec测试操作的参数(默认为 10 秒)来自定义等待。例如:

- description: Verify that element is visible
  action: org.getopentest.selenium.AssertElementVisible
  args:
    locator: { id: my_element }
    explicitWaitSec: 20
于 2020-01-15T18:31:14.083 回答