无法单击'100'按钮以显示所提供的HTM1的100个结果。我已经尝试过Xpath,类,cssselector,但是显然我做错了什么。
HTML:[https://pastebin.com/miyyVLP7]
页面网址:https://www.dlapiper.com/en/uk/people/#q=london&sort=relevancy
WebElement hundredResults = driver.findElement(By.xpath("//div[@id='peoplesearch']/div[3]/div[4]/div[9]/ul/li[4]/a"));
hundredResults.click();
这将起作用:
element=driver.find_element_by_xpath("//[@id='peoplesearch']/div[3]/div[4]/div[9]/ul/li[a")
driver.execute_script("arguments[0].click();", element)
似乎在按钮的前面还有另一个元素。