如何模拟硒中的按钮单击?

时间:2020-10-02 19:26:24

标签: python selenium-webdriver

我目前正在学习硒。我试图模拟来自网址“ https://worldpopulationreview.com/countries/countries-by-gdp/#worldCountries”的csv文件的按钮点击。

我做到了:

Right click the csv icon
Inspect and copy the full xpath

然后我使用了以下代码:

from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import os

driver = webdriver.Chrome()

url = 'https://worldpopulationreview.com/countries/countries-by-gdp'
driver.get(url)

xpath = '/html/body/div[1]/div/div[1]/div[2]/div[2]/div[1]/div/div/div/div[2]/div[1]/a[2]'

btn = driver.find_element_by_xpath(xpath)
btn.click()

# df = pd.read_csv(os.path.expanduser('~/Downloads/data.csv'))
# print(df.head())
# driver.close()

Errro

WebDriverException: Message: unknown error: Element <a>...</a> is not clickable at point (1070, 879). Other element would receive the click: <div id="google_ads_iframe_/15184186/worldpopulationreview_adhesion_0__container__" style="border: 0pt none;">...</div>
  (Session info: chrome=85.0.4183.121)
  (Driver info: chromedriver=2.42.591059 (a3d9684d10d61aa0c45f6723b327283be1ebaad8),platform=Mac OS X 10.15.7 x86_64)

尝试

我尝试使用不同的xpath进行多次尝试,但无济于事。如何模拟该特定网站的按钮点击?

2 个答案:

答案 0 :(得分:2)

产生WebDriverWait()并等待element_to_be_clickable()并跟随css选择器。

driver.get("https://worldpopulationreview.com/countries/countries-by-gdp")
WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.CSS_SELECTOR,"a[download='csvData.csv']"))).click()

您需要导入以下库。

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

答案 1 :(得分:1)

有时候,如果有障碍物,硒将无法单击元素。在这种情况下,您可以使用javascript。但是首先,我将等待该元素可点击。

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
from selenium.webdriver.common.keys import Keys
import os

driver = webdriver.Chrome()

url = 'https://worldpopulationreview.com/countries/countries-by-gdp'
driver.get(url)

xpath = '/html/body/div[1]/div/div[1]/div[2]/div[2]/div[1]/div/div/div/div[2]/div[1]/a[2]'

# btn = driver.find_element_by_xpath(xpath)
btn = WebDriverWait(driver, 10).until(
        EC.element_to_be_clickable((By.XPATH, "//a[@download='csvData.csv']")))
driver.execute_script("arguments[0].click();", btn)
# btn.click()

# df = pd.read_csv(os.path.expanduser('~/Downloads/data.csv'))
# print(df.head())
# driver.close()