问个关于selenium里WebDriverWait抛出异常的问题
代码:WebDriverWait(driver,10,1,ignored_exceptions=None).until(EC.presence_of_element_located((By.ID,'out')),message="")
WebDriverWait里ignored_exceptions这个选项,文档里描述默认是NoSuchElementExeception,如果我想加入一个比如TimeoutException,网上是说写成元组,即ignored_exceptions=(TimeoutException),但是这样写就会报错:TypeError: catching classes that do not inherit from BaseException is not allowed,请问怎样写才对呢? 代码发全
页:
[1]