gpt4 book ai didi

selenium - 如何使用 selenium 进行右键单击?

转载 作者:行者123 更新时间:2023-12-02 19:07:36 26 4
gpt4 key购买 nike

我正在尝试使用 selenium 执行右键单击,对于如何执行此操作有什么想法吗?

最佳答案

根据OpenQA.Selenium.Interactions Namespace .

// step 1 - select the element you want to right-click
var elementToRightClick = this.Driver.FindElement(By.Id("elementtoclickonhasthisid"));
// step 2 - create and step up an Actions object with your driver
var action = new OpenQA.Selenium.Interactions.Actions(this.Driver);
action.ContextClick(elementToRightClick);
// step 3 - execute the action
action.Perform();

关于selenium - 如何使用 selenium 进行右键单击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2171589/

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