如何在python的selenium中完成以下操作:
el = WebDriverWait(self.driver, 10).until(
expected_conditions.js_return_value(
("return document.readyState === 'complete' ? true : false")
)
)我已经在Java中看到了实现上述功能的方法,但在python中找不到类似的解决方案
https://stackoverflow.com/questions/51252083
复制相似问题