当前位置: 首页 > 知识库问答 >
问题:

硒找不到实际存在的元素

能旭
2023-03-14

我正在自动化一个枯燥的数据输入任务,所以我创建了一个程序,基本上是使用Selenium为我点击和键入。它跑得很好!除非它到达这个特定的“编辑详细信息...”元素,但是,无论我尝试什么方法,selenium都无法找到该元素。

我尝试使用一个CSS选择器来访问ID,但没有成功。我还尝试使用XPATH,并尝试通过给它一个带有按钮文本的'contains'语句来更加具体。最后,我使用selenium IDE查看当我实际单击按钮时它注册了什么定位器,并且它使用了与我在代码中声明的完全相同的ID。我完全不知道该如何解决这个问题。

from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.common.exceptions import *

import pyautogui as py
import time, sys, os, traceback


#Launching Browser
browser = webdriver.Ie()
wait = WebDriverWait(browser, 15) #Waiting


#Laziness Functions
def clickCheck(Method, Locator, elemName):
    wait.until(EC.element_to_be_clickable((Method, Locator)))
    print(elemName + ' Clickable')




#Commence main function
try:

    #Do alot of Clicks and Stuff until it reaches "Edit Details..." element

    """THIS IS WHERE THE PROBLEM LIES"""
    time.sleep(3)
    clickCheck(By.CSS_SELECTOR, 'td[id="DSCEditObjectSummary"]', "Edit Details")
    elemEdit = browser.find_element_by_css_selector('td[id="DSCEditObjectSummary"]')
    elemEdit.click()




#FAILSAFES

except:
    print('Unknown error has Occured')
    exc_info = sys.exc_info()
    traceback.print_exception(*exc_info)
    del exc_info

finally: #Executes at the end and closes all processes
    print('Ending Program')
    browser.quit()
    os.system("taskkill /f /im IEDriverServer.exe")
    sys.exit()

raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.NoSuchElementException: Message: Unable to find element with css selector == [id="DSCEditObjectSummary"] 

编辑详细信息“按钮

共有1个答案

别宏盛
2023-03-14

看起来问题可能与页面加载缓慢有关,或者正如另一位评论者所说的是在iFrame中,等等。如果你在Windows上运行,我通常会尝试使用X/Y坐标和宏工具(如AppRobotic)来点击。如果是页面加载速度慢的问题,我通常会尝试停止页面加载,并与页面进行一点交互,这样的操作应该对您有用:

import win32com.client
from win32com.client import Dispatch
x = win32com.client.Dispatch("AppRobotic.API")
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.common.exceptions import *

import pyautogui as py
import time, sys, os, traceback

#Launching Browser
browser = webdriver.Ie()
wait = WebDriverWait(browser, 15) #Waiting


#Laziness Functions
def clickCheck(Method, Locator, elemName):
    wait.until(EC.element_to_be_clickable((Method, Locator)))
    print(elemName + ' Clickable')

driver.get('https://www.google.com')
# wait 20 seconds
x.Wait(20000)
# scroll down a couple of times in case page javascript is waiting for user interaction
x.Type("{DOWN}")
x.Wait(2000)
x.Type("{DOWN}")
x.Wait(2000)
# forcefully stop pageload at this point
driver.execute_script("window.stop();")
# if clicking with Selenium still does not work here, use screen coordinates
x.MoveCursor(xCoord, yCoord)
x.MouseLeftClick
x.Wait(2000)
 类似资料:
  • 任何提示都会很有帮助!

  • 大家好,我正试图在网站中找到一个元素,但出于某种原因,它不允许我。该网页是Reddit的登录形式,我尝试输入用户名和密码,但当我列出所有输入时,它只出现在顶部搜索栏中。我想这是因为它就像在另一个“标签”一样,它会弹出到前面,但我不知道如何管理它。提前谢谢。

  • 这是我用来使用铬Web驱动程序和python查找元素的代码行 这是每次尝试运行代码时抛出的错误 这些是标题栏上的按钮,我试图让我的代码单击html按钮 这是努力按钮的html代码,我试图使用selenium来定位它,以便它可以点击这里,但它总是说没有找到这样的元素 我甚至创建了一个单独的函数来一次又一次地找到元素并在每次成功尝试后Hibernate5秒,直到它点击了元素,但仍然没有运气它永远运行而

  • 我试图运行下面的selenium代码,但我得到了一个异常: 封装演示; Selenium试图在单击登录名webelement之前找到webelement的电子邮件ID。请帮忙。

  • 我需要在HTML中找到此元素 我就是这样做的 使用XPATH,由Chrome控制台生成: 使用XPATH,它正在寻找某种正则表达式: 最后使用XPATH,它通过页面精确到我的元素 他们都没有工作。All给出了一个例外 硒。常见的例外情况。InvalidSelectorException:Message:u'由于以下错误,给定的选择器无法找到具有xpath表达式的元素:\n语法错误:表达式不是合法表

  • URL:http://bcmprod.brill.com/rsuite-cms/ 我正在尝试从上面的客户端站点自动下载手稿。我在C#中使用selenium phantomjs。 我有用户凭据。但是,组成登录表单的元素(例如用户名、密码)在页面源中不存在,但当您在浏览器中检查这些元素时,这些元素就存在了。 这些是我用来从“检查元素”中定位它们的xpath(ID是动态分配的,这就是我没有使用它们的原因