在使用selenium在网站中导航并选择具有指定值(例如衬衫尺寸(的商品时,
我已经尝试使用以下两个代码,但都不起作用:
size_button = driver.find_element_by_xpath("//button[@id='edit-attributes-SIZE-wrapper'][@value='S']").click()
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