如何使用 selenium python 在输入标签中查找和写入

How to find and write inside an input tag with selenium python(如何使用 selenium python 在输入标签中查找和写入)
本文介绍了如何使用 selenium python 在输入标签中查找和写入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我想将网站 我想更改它的 MA Length 在 Vol 中的值,您可以通过单击网站左上角 Apple Inc - D - Cboe BZX 正下方的 Vol(20) 来访问它.

解决方案

  1. 使用

  2. 选择一个合适的 定位器策略,这将允许唯一地匹配元素页面
  3. 定位元素
  4. 以这种方式将定位代码包装到 显式等待中 您的测试将更加稳健和可靠
  5. 使用 WebElement API 进行交互带元素

示例代码:

driver.get("https://www.tradingview.com/chart/")WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.XPATH, "//a[contains(@class,'format')]"))).click()输入 = WebDriverWait(驱动程序,10).until(EC.element_to_be_clickable((By.XPATH, "//input[contains(@class,'innerInput')]")))driver.execute_script("arguments[0].value=30", 输入)

I would like to change a value of a input tag that haves the value 20 to 110 in the website https://www.tradingview.com/chart/. How can I actually do that?(all of that using selenium python) The value i would like to change it's MA Length inside Vol, you can acess that by clicking at Vol(20) right below Apple Inc - D - Cboe BZX at the top left part of the website.

解决方案

  1. Locate the element you would like to interact with using your favourite browser developer tools

  2. Choose an appropriate Locator Strategy which will allow to uniquely match the element at the page
  3. Locate the element
  4. Wrap the locating code into an Explicit Wait this way your test will be more robust and reliable
  5. Use WebElement APIs to interact with elements

Example code:

driver.get("https://www.tradingview.com/chart/")

WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.XPATH, "//a[contains(@class,'format')]"))).click()
input = WebDriverWait(driver, 10).until(
    EC.element_to_be_clickable((By.XPATH, "//input[contains(@class,'innerInput')]")))
driver.execute_script("arguments[0].value=30", input)

这篇关于如何使用 selenium python 在输入标签中查找和写入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

build conda package from local python package(从本地 python 包构建 conda 包)
How can I see all packages that depend on a certain package with PIP?(如何使用 PIP 查看依赖于某个包的所有包?)
How to organize multiple python files into a single module without it behaving like a package?(如何将多个 python 文件组织到一个模块中而不像一个包一样?)
Check if requirements are up to date(检查要求是否是最新的)
How to upload new versions of project to PyPI with twine?(如何使用 twine 将新版本的项目上传到 PyPI?)
Why #egg=foo when pip-installing from git repo(为什么从 git repo 进行 pip 安装时 #egg=foo)