AttributeError: 'WebDriver' object has no attribute '_timeout'问题如何解决
代码是这样的class testCASE():
driver = webdriver.Chrome()
driver.get('http://10.220.96.81:8081/cas/login?service=http://10.220.96.81')
waitObject= WebDriverWait.until(driver,10)
def inputuserinfo(self):
Operate().sendKeys(self.driver,'//*[@id="username"]','admin')
Operate().sendKeys(self.driver,'//*[@id="password"]','Tprihn@2020_XX')
Operate().cLick(self.driver,'//*[@id="sub1"]')
这个是报错
这个问题应该如何解决
https://blog.csdn.net/qq_27251475/article/details/102776394 参考下 waitObject= WebDriverWait.until(driver,10)
这个换一个 参考下这个链接https://blog.csdn.net/dream_18/article/details/85137580 https://blog.csdn.net/qq_27251475/article/details/102776394 参考下这篇文章 方法是不是用的不对
页:
[1]