Python Selenium Webdriver selenium.common.exceptions.NoSuchElementException:消息:没有这样的元素:无法找到元素

时间:2020-09-08 17:30:16

标签: python selenium selenium-webdriver

我知道我的问题确实很普遍。但是,尽管我在Google和SO上进行了严格的搜索,但是由于上述错误消息“无法定位元素”,我无法找到任何能帮助我解决Python Selenium问题的方法。我访问的几乎所有线程都与切换帧有关。我无法在网站上找到任何类型的框架标签。

问题是我试图选择一个输入字段,以便可以发送send_keys,但硒无法找到该元素。元素具有以下XPath:

'//*[@id="app-root"]/div/div[2]/div/div[1]/div[2]/div[2]/div[1]/div[2]/div/input'

以下是我拥有的代码:

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

driver = webdriver.Chrome('./chromedriver')  # Optional argument, if not specified will search path.
driver.get(site_url);

time.sleep(5)
delivery_number = driver.find_element_by_xpath('//*[@id="app-root"]/div/div[2]/div/div[1]/div[2]/div[2]/div[1]/div[2]/div/input')

driver.quit()

我无法选择带有以上引用的元素。从chrome开发工具复制的xpath不太可能出现错误。

我也试图在find_element行之前使用它,但也无济于事:

element = WebDriverWait(driver, 20).until(EC.presence_of_element_located((By.XPATH, '//*[@id="app-root"]/div/div[2]/div/div[1]/div[2]/div[2]/div[1]/div[2]/div/input')))

对于使用截图作为网页源代码无法准确代表网页,我深表歉意。

enter image description here

如果有帮助,这是页面来源:

<!DOCTYPE html>
<html>
<head lang="zh-cn">
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="description" content="">
    <meta name="keywords" content="">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <title>Nestia F&B</title>
    <meta name="renderer" content="webkit">
    <!-- No Baidu Siteapp-->
    <meta http-equiv="Cache-Control" content="no-siteapp"/>
    <meta name="apple-mobile-web-app-title" content=""/>
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black">
    <link rel="stylesheet" href="/static/css/ui/amazeui.min.css"/>
    <link rel="stylesheet" href="/static/css/app.css"/>
    <link rel="stylesheet" href="/static/css/patch.css"/>
    <link rel="stylesheet" href="/static/css/bootstrap.min.css">
    <link rel="stylesheet" href="/static/css/videoplayer.css">
    <link rel="stylesheet" href="/static/css/movies.css">
</head>
<body>
<div id="app-root">
    <div style="width:100%;text-align: center">
        <img src="static/img/loading.gif"/>
    </div>
</div>

<script src="/static/scripts/app.bundle.20200907180756.js"></script>
</body>
</html>

感谢您阅读到这里。一些帮助将不胜感激。 :)

1 个答案:

答案 0 :(得分:2)

使用WebDriverWait()和element_to_be_clickable()并使用xpathcss selector中的任何一个。

XPATH

element = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, '//div[@class="am-form-group item-input"]/input')))

CSS选择器

element = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, 'div.item-input>input')))