我有下面的html代码.

<div align="center">
    <input type="file" name="filePath"><br>
    <input type="Submit" value="Upload File"><br>
</div>

我正在try 使用Selenium和Python查找两个元素"file"和"submit".下面是我try 使用的代码.

from selenium import webdriver
from selenium.webdriver.common.keys import Keys

# create a new Firefox session
driver = webdriver.Chrome()

# Maximize the browser window
driver.maximize_window()

# Enter the url to load
driver.get("<<MY PAGE TO LOAD>>")

# Wait for the page to load
driver.implicitly_wait(5)

# find the upload file type and pass a test value
upload_field = driver.find_element_by_partial_link_text('file')
upload_field.clear()
upload_field.send_keys("test")

当我运行此代码时,我能够在Chrome浏览器中成功加载页面,但我得到以下异常.

# Exception when trying to get element by type
Traceback (most recent call last):
  File "C:\Users\TEST\Desktop\Test.py", line 33, in <module>
    upload_field = driver.find_element_by_partial_link_text('file')
  File "C:\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 453, in find_element_by_partial_link_text
    return self.find_element(by=By.PARTIAL_LINK_TEXT, value=link_text)
  File "C:\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 955, in find_element
    'value': value})['value']
  File "C:\Python\Python36\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 312, in execute
    self.error_handler.check_response(response)
  File "C:\Python\Python36\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 237, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"partial link text","selector":"file"}
  (Session info: chrome=63.0.3239.132)
  (Driver info: chromedriver=2.35.528161 (5b82f2d2aae0ca24b877009200ced9065a772e73),platform=Windows NT 10.0.14393 x86_64)

我查看了提供的解决方案here,但这也是一个错误.我目前正在使用Python 3.6.4 x64和Selenium 3.8.1.我的操作系统是Windows 7 x64位.如何在html中获取带有"type"的元素?

推荐答案

在查找元素时签出the docs.我发现XPath或css Select 器特别强大,因为它们非常通用.

xpath

upload_field = driver.find_element_by_xpath("//input[@type='file']")

css Select 器

upload_field = driver.find_element_by_css_selector("input[name='filePath'][type='file']")

Python-3.x相关问答推荐

需要使用regex匹配字符串的帮助,直到最后一次出现开闭括号,开闭括号中的值是可选的

Python根据阈值对数字进行分组

具有多个值的极轴旋转和熔化/取消旋转(反转旋转)操作(Pandas 堆叠/取消堆叠交替/UDF覆盖)

Python将类实例变量转换为嵌套 struct

将f-字符串放置在f-字符串内

Django 3.2/Django-cms 3.11:查找错误:型号帐户.客户用户未注册

从Metacritic上通过网络擦除游戏数据的问题

如何将从维基百科表中抓取的数据转换为字典列表?

TypeError: issubclass() arg 1 在 Flask 中导入 langchain 时必须是一个类

使用 RANSAC 在激光雷达点云中查找电力线

判断 gekko 中的表达式

运行 pip install -r requirements.txt 时出错

TypeError:JSON 对象必须是 str,而不是 'dict'

tensorflow 中 numpy.newaxis 的替代方案是什么?

sys.stdin.readline() 读取时没有提示,返回 'nothing in between'

在 Python 3 中获取所有超类

如何将numpy数组图像转换为字节?

Python - 类 __hash__ 方法和集合

如何为 anaconda python3 安装 gi 模块?

如何在 Python 3.4 中使用 pip 3?