我试图单击一个按钮,但收到此错误消息: 我要单击的元素确实存在于页面上,但是我不确定为什么要说该元素不存在:
Message: no such element: Unable to locate element: {"method":"xpath","selector":"//button[@class="vote_button mfp-voteText"]"}
下面是我的代码:
driver.get('https://trupanion.com/canada/members/contest?pixlee_album_photo_id=427049511')
time.sleep(10)
try:
vote = driver.find_element_by_xpath('//button[@class="vote_button mfp-voteText"]')
vote.click()
except Exception as e:
print(e)
下面是chrome开发工具中的XPath,它表明它是正确的:
答案 0 :(得分:1)
将其放在<frame>
标签中,请先将其切换:
driver.get('https://trupanion.com/canada/members/contest?pixlee_album_photo_id=427049511')
time.sleep(10)
try:
#switch it first
driver.switch_to.frame(driver.find_element_by_id('pixlee_lightbox_iframe'))
vote = driver.find_element_by_xpath('//button[@class="vote_button mfp-voteText"]')
vote.click()
except Exception as e:
print(e)
但是注意time.sleep(..)
是个坏主意。
您可以在此处了解硒的等待时间:
selenium-python.readthedocs.io/waits.html
要切换框架:
.frame_to_be_available_and_switch_to_it
尽管您的xpath可以使用,但css选择器看起来更好:
vote = driver.find_element_by_css_selector('button.vote_button.mfp-voteText')
答案 1 :(得分:1)
尝试通过css selector
函数使用XPATH
代替WebdriverWait()
。它将等待X秒钟以使元素可单击,并在出现该元素后立即对其进行单击。但是,您需要切换到必须通过frame
选择器找到的框架。
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
self.webdriver.switch_to_frame(self.webdriver.find_element_by_css_selector('frame'))
try:
WebDriverWait(webdriver,time).until(EC.element_to_be_clickable((By.CSS_SELECTOR,path)))
except Exception as e:
print(e)
答案 2 :(得分:1)
所需元素位于<iframe>
中,因此您必须:
诱导WebDriverWait使所需的帧可用并切换到。
引出WebDriverWait以使所需的元素可点击。
您可以使用以下任一Locator Strategies:
使用CSS_SELECTOR
:
driver.get('https://trupanion.com/members/contest?pixlee_album_photo_id=427049511')
WebDriverWait(driver, 10).until(EC.frame_to_be_available_and_switch_to_it((By.CSS_SELECTOR,"iframe#pixlee_lightbox_iframe")))
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "button.vote_button.mfp-voteText"))).send_keys("test")
使用XPATH
:
driver.get("https://trupanion.com/members/contest?pixlee_album_photo_id=427049511")
WebDriverWait(driver, 10).until(EC.frame_to_be_available_and_switch_to_it((By.XPATH,"//iframe[@id='pixlee_lightbox_iframe']")))
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//button[@class='vote_button mfp-voteText']"))).click()
注意:您必须添加以下导入:
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
浏览器快照:
您可以在以下位置找到一些相关的讨论