1

这是错误

WebDriverException: Message: "findElement execution failed;\\n Property \'Error\' of object [object DOMWindow] is not a function"

我跑:

LoginPage.authenticate(self, self.admin_user) 

这工作正常,让我登录 OK,但是一旦我尝试使用 chrome 驱动程序在下一页上找到一个元素:

self.driver.find_element_by_id('Menu_LogInOut')

我收到上述错误。它不会在 Firefox 中出错。

有没有其他人遇到过这个?到底是怎么回事?我该如何解决?

4

1 回答 1

0

我们在应用程序中无意中覆盖了 window.Error。感谢 webdriver 指出这一点。

解决方法是不这样做,例如 window.Error_These_arent_the_droids_youre_looking_for。

XD

于 2012-05-08T21:10:24.567 回答