我知道如果我们想在页面中找到某些东西时停止循环,比如
if "page not found" in browser.page_source:
return
但如果在页面源中找不到的内容然后返回...
因为但是这不起作用
if "next page" not in browser.page_source:
return
请如何解决..
答案 0 :(得分:0)
您可以在try-except块
中添加代码try:
return str("your text") in self.driver.page_source
except:
return false
结帐此链接 - how can I check if some text exist or not in the page?