我想写一个python代码,他点击href链接。
HTML的截图:
这是我目前在Python中使用的,但它不起作用。
tables = browser.find_elements_by_xpath('//*[@id="notice"]')
for table in tables:
row = table.find_element_by_xpath('//tr[@class="Zebra"]//td//a[@href="https://enot.publicprocurement.be/enot-war/preViewNotice.do?noticeId=438868&saveSearchParams=true&pageSize=%31%32%35&d-446978-p=%31&"]').click()
这是第行的错误消息:
NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"//tr[@class="Zebra"]//td//a[@href="https://enot.publicprocurement.be/enot-war/preViewNotice.do?noticeId=438868&saveSearchParams=true&pageSize=%31%32%35&d-446978-p=%31&"]"}
你能告诉我我做错了什么吗?