简体   繁体   English

<a>通过 -- data-slide=&quot;next&quot; 使用 Selenium 和 Python 单击按钮</a>

[英]Clicking an <a> button using Selenium and Python with -- data-slide="next"

I am new to using Selenium on Python for webscraping and am having issues navigating through a webpage.我不熟悉在 Python 上使用 Selenium 进行网页抓取,并且在浏览网页时遇到问题。 My current code navigates through the webpage by clicking buttons using:我当前的代码通过使用以下按钮单击按钮浏览网页:

web.find_element("xpath", '').click()

with the appropriate xpath in the single parentheses.在单括号中使用适当的 xpath。

I am attempting to "click" a button whose HTML looks like that:我正在尝试“单击”其 HTML 如下所示的按钮:

<a id="medicalUsageNext" href="#myPereferences" data-slide="next" class="btn btn-primary pull-right margin10-b gtm_medical_service_next" title="Next" role="button">

 Next
 <i class="icon-caret-right"></i>
 </a> 

Despite various ways of attempting to click this button (adding an implicit wait, selecting by css, text, or type), I continue to get the ElementNotInteractableException.尽管尝试单击此按钮的方法有多种(添加隐式等待、按 css、文本或类型选择),但我仍会收到 ElementNotInteractableException。

Here is one (of many) ways I've attempted to click the button:这是我尝试单击按钮的一种(多种)方法:

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

web = webdriver.Chrome()
web.implicitly_wait(10)
web.get('https://apply.coveredca.com/lw-shopandcompare/?lang=en_EN')

zip2 = "90210"
income2 = "100000"
year_1 = "2022" 
household_1 = "1"
subsidy_household_size = "2"

web.find_element("xpath", '//*[@id="screeningquestions-zip"]').send_keys(zip2)
web.find_element("xpath", '//*[@id="screeningquestions- 
householdincomeperyear"]').send_keys(income2)

year = web.find_element("xpath", '//*[@id="screeningquestions-enrollyear"]')
year.send_keys(year_1)
year.send_keys(Keys.RETURN)

hh = web.find_element("xpath", '//*[@id="screeningquestions-howmanypeopleinhousehold"]')
hh.send_keys(subsidy_household_size)
hh.send_keys(Keys.RETURN)

for x1 in range(0, int(household_1)):
    temp1 = str(x1)
    web.find_element("xpath", '//*[@id="screeningquestions-age-'+temp1+'"]').send_keys("33")

for x2 in range(int(household_1), int(subsidy_household_size)):
    temp2 = str(x2)
    web.find_element("xpath", '//*[@id="screeningquestions-age-'+temp2+'"]').send_keys("35")
    temp3 = str(x2+1)
    web.find_element("xpath", '//*[@id="app-container"]/main/div/div/div[2]/div/div/div/form/span[3]/div['+temp3+']/div[3]/div[1]/label/span[1]').click()

web.find_element("xpath", '//*[@id="account-creation-access-code-invalid-modal-button"]').click()
web.find_element("xpath", '/html/body/div[3]/div/div/div/div[2]/div/div[1]/button').click()

web.find_element("xpath", '//*[@id="shopandcompare-previewplans"]').click()
web.find_element("xpath", '//*[@id="providerSearchNext"]').click()
web.find_element("xpath", '//*[@id="medicalUsageNext"]').click

For reference, this clicks through the following website: https://apply.coveredca.com/lw-shopandcompare/?lang=en_EN作为参考,请点击以下网站: https ://apply.coveredca.com/lw-shopandcompare/?lang=en_EN

I've been working to fix this for a few days and really appreciate any help.几天来我一直在努力解决这个问题,非常感谢任何帮助。

To click on the element with text as Next you need to induce WebDriverWait for the element_to_be_clickable() and you can use either of the following locator strategies :要单击文本为Next的元素,您需要为element_to_be_clickable()引入WebDriverWait ,您可以使用以下任一定位器策略

  • Using PARTIAL_LINK_TEXT :使用PARTIAL_LINK_TEXT

     WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.PARTIAL_LINK_TEXT, "Next"))).click()
  • Using CSS_SELECTOR :使用CSS_SELECTOR

     WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "a#medicalUsageNext[data-slide='next'][title='Next']"))).click()
  • Using XPATH :使用XPATH

     WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//a[@id='medicalUsageNext' and @data-slide='next'][@title='Next']"))).click()
  • Note : You have to add the following imports :注意:您必须添加以下导入:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM