如何使用id.class.href python selenium点击这里的链接,我使用pyCharm * href是可更改的
我试试
driver.find_element_by_xpath("//div[@id='result_26']//a[@class='a-link-normal s-access-detail-page s-color-twister-title-link a-text-normal']/@href").click()
enter image description here
答案 0 :(得分:0)
您点击的是href 属性,而不是<a>
标记。
假设你的xpath是正确的,只需从最后删除/@href
,它理想情况下应该有效。