Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Firefox 的 Selenium IDE 扩展录制了一个脚本,我想添加命令 waitForCondition。我看到它需要两个参数:脚本和超时。在 Selenium IDE 中,每个命令都有 3 个文本字段:命令名称(我假设为“waitForCondition”)、目标和值。我应该在哪里以及如何将这两个参数放在这个 UI 中?
waitForCondition var value = selenium.getText("foo"); value.match(/bar/); 3000
命令:waitForCondition 目标:var value = selenium.getText("foo"); value.match(/bar/); 价值:3000