如何在使用python的selenium驱动程序中

时间:2016-02-09 06:38:37

标签: python selenium

我知道如果我们想在页面中找到某些东西时停止循环,比如

    if "page not found"  in browser.page_source:
        return

但如果在页面源中找不到的内容然后返回...

因为但是这不起作用

    if "next page"  not in browser.page_source:
        return

请如何解决..

1 个答案:

答案 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?