使用显示等待的 – expected_conditions.element_to_be_clickable报错
问题:
使用显示等待 WebDriverWait(driver, 10, ignored_exceptions=ElementClickInterceptedException).until(expected_conditions.element_to_be_clickable((xx,xx)))
的时候报错> raise exception_class(message, screen, stacktrace)
ElementClickInterceptedException
调试过程重发现是能定位到元素的,但是点击不了
因为高版本的WebDriverWait只忽略的部分报错,而低版本的思忽略了所有的报错的,文章来源:https://www.toymoban.com/news/detail-517125.html
解决办法:
忽略报错即可
ignored_exceptions=ElementClickInterceptedException文章来源地址https://www.toymoban.com/news/detail-517125.html
到了这里,关于【raise exception_class(message, screen, stacktrace)】的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!