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.
我有许多使用 WebDriver 的自动化测试用例,它们都在我的本地机器上完美运行。
现在我需要在 Saucelabs 上远程运行这些测试用例,所以我应该使用 RemoteWebDriver。
但是我收到一个找不到方法 Click() 的错误。我已经尝试了所有建议,例如改用 submit() 或为 Click 创建 JS,但仍然发生相同的错误。
driver.findElements(By.id("我的 div id")).click();
findElements() 方法返回一个 WebElements 列表,您可以尝试调用 findElement() 方法吗?