gpt4 book ai didi

selenium - 选择文本并执行单击操作

转载 作者:行者123 更新时间:2023-12-02 21:38:41 25 4
gpt4 key购买 nike

我想选择一些文本并执行单击操作 - 就像在 Winword 中我们单击 Bold选择一些文本后...

我必须选择文本并单击 <B> textarea 中的粗体图标.

知道如何使用 Selenium/Webdriver 来做到这一点吗?

最佳答案

在 Java 中,The Advanced User Interactions API有你的答案。

// the element containing the text
WebElement element = driver.findElement(By.id("text"));
// assuming driver is a well behaving WebDriver
Actions actions = new Actions(driver);
// and some variation of this:
actions.moveToElement(element, 10, 5)
.clickAndHold()
.moveByOffset(30, 0)
.release()
.perform();

关于selenium - 选择文本并执行单击操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9978081/

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