我想将网站 我想更改它的 MA Length 在 Vol 中的值,您可以通过单击网站左上角 Apple Inc - D - Cboe BZX 正下方的 Vol(20) 来访问它.
使用
示例代码:
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.
Locate the element you would like to interact with using your favourite browser developer tools
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 在输入标签中查找和写入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!