AttributeError: 'bytes' object has no attribute 'presence_of_element_located'
时间: 2023-10-25 08:29:43 浏览: 219
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误是因为你试图在字节对象上调用 `presence_of_element_located` 属性,而字节对象没有这个属性。
通常情况下,`presence_of_element_located` 是一个在 Selenium 库中用于等待元素出现的函数,所以我猜你可能在使用 Selenium 时遇到了问题。
请确保你已正确导入 Selenium,并且使用了正确的方式来调用 `presence_of_element_located` 函数。如果你能提供更多的代码和错误信息,我可以帮助你更好地解决问题。
阅读全文