如何使用硒(python)点击具有特定值的按钮



在使用selenium在网站中导航并选择具有指定值(例如衬衫尺寸(的商品时,

我已经尝试使用以下两个代码,但都不起作用:

  1. size_button = driver.find_element_by_xpath("//button[@id='edit-attributes-SIZE-wrapper'][@value='S']").click()
  2. size_button = driver.find_element_by_xpath("//input[text()='S']").click()

下面是该网站的屏幕截图。

项目示例,要选择大小";s";

大小"的xpath;s";按钮为//*[@id="edit-attributes-SIZE-wrapper"]/span/div/span[2]size‘s’按钮的完整xpath是/html/body/div[1]/div[2]/div[2]/div/div/div/div/div/div/div[1]/div/div[2]/div[4]/form/div/div[1]/div/span/div/span[2]

您正在使用此xpath

//input[text()='S']

但在HTML中,我确实看到它是span tag

因此您必须将其更改为:

//span[text()='S']

//span[@value='S']

然后点击如下:

wait = WebDriverWait(driver, 30)
try:
wait.until(EC.element_to_be_clickable((By.XPATH, "//span[@value='S']"))).click()
print('Clicked on S button')
except:
pass

进口:

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

相关内容

  • 没有找到相关文章

最新更新