我正在尝试对实时流做一些事情,我想使用一个使用 selenium 的函数来查找页面上是否存在特定的 url 或 .png 文件。如果 url 或 .png 在该函数返回 True 的页面上,否则返回 False。有人可以帮我做吗?
问问题
48 次
3 回答
0
这个xpath怎么样?
'//img[contains(@src, ".png")]'
于 2022-01-31T11:36:45.847 回答
0
尝试:
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('https://www.google.com/')
def checkString(yourstring):
if yourstring in driver.page_source:
return True
else:
return False
print(checkString('googlelogo_color_272x92dp.png'))
于 2022-01-31T10:03:35.550 回答
0
美汤怎么样?
parser = BeautifulSoup(driver.page_source, "html.parser")
然后调用 find_all,如果你有一个例子我可以更具体:)
于 2022-01-31T05:45:29.397 回答