gpt4 book ai didi

selenium - 在 Selenium 中发送 key 的替代方法

转载 作者:行者123 更新时间:2023-12-05 01:01:00 25 4
gpt4 key购买 nike

我想向 textbox 发送一个字符串使用 Selenium,但我发现 sendKeys对我来说太慢了。如果我有一个字符串“abcde”,有没有办法将该字符串作为一个 block 发送,而不是通过 sendKeys 输入“a”然后“b”然后“c”等?

最佳答案

在python中使用execute_script

from selenium import webdriver
driver = webdriver.Chrome('chromedriver')
driver.get("http://www.google.com");
driver.execute_script("document.getElementsByName('q')[0].value='abcde'")

关于selenium - 在 Selenium 中发送 key 的替代方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47226584/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com