无法使用Selenium WebDriver和Python选择/单击按钮

时间:2017-11-27 10:45:07

标签: python selenium-webdriver web-scraping

我正在尝试使用Selenium Web Driver单击一个按钮。

(我认为它是用Angular编写的)

网址为https://www.truelocal.com.au/search/accountants/canberra

这是页面底部的绿色按钮,显示“加载更多结果”

元素页面来源是......

<button class="btn btn-full btn-add js-review-open" ng-class="{true:'btn-loading', false:''}[vm.loadingMore]" ng-hide="vm.checkResultsOffset()" ng-click="vm.loadMoreResults()" aria-hidden="false" style="">

  <!-- ngIf: vm.loadingMore==true -->
  <!-- ngIf: vm.loadingMore==false -->
  <span ng-if="vm.loadingMore==false" class="ng-scope" style="">LOAD MORE RESULTS</span>
  <!-- end ngIf: vm.loadingMore==false -->
</button>

我唯一能做的就是

elm = driver.find_elements_by_xpath("//*[contains(text(), 'LOAD MORE RESULTS')]")

但我无法点击按钮。

请帮忙吗?

2 个答案:

答案 0 :(得分:1)

试试这个。它将一直点击加载更多按钮,直到没有剩下这样的按钮被点击。

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

driver = webdriver.Chrome()
driver.get("https://www.truelocal.com.au/search/accountants/canberra")
wait = WebDriverWait(driver, 10)

while True:
    try:
        link = wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR, "button[ng-click='vm.loadMoreResults()'] .ng-scope")))
        link.click()
        wait.until(EC.staleness_of(link))
    except:
        break
driver.quit()

答案 1 :(得分:0)

要点击带有文字LOAD MORE RESULTS的按钮,我们必须等待按钮正确呈现,因为按钮是Angular Element。因此,您可以使用以下代码块:

WebDriverWait(driver, 10).until(EC.text_to_be_present_in_element(By.XPATH,"//button[@class='btn btn-full btn-add js-review-open']/span[@class='ng-scope']"),'LOAD MORE RESULTS')
driver.find_elements_by_xpath("//button[@class='btn btn-full btn-add js-review-open']/span[@class='ng-scope']").click()