gpt4 book ai didi

selenium - 如何通过 Selenium 的 WebDriver 传递带有修改键的点击?

转载 作者:行者123 更新时间:2023-12-02 22:15:45 25 4
gpt4 key购买 nike

我有这行代码:

final WebElement button = driver.findElement(By.tagName("button"));

现在,如何在按住元键的情况下单击该按钮?

最佳答案

根据 Madd0g,java 代码如下所示:

  Actions shiftClick = new Actions(driver);
shiftClick.keyDown(Keys.SHIFT).click(element).keyUp(Keys.SHIFT).perform();

关于selenium - 如何通过 Selenium 的 WebDriver 传递带有修改键的点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8552740/

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