如何从selenium Automation中的contextClick(右键单击)获取第4个Web元素

时间:2017-10-12 18:18:28

标签: selenium automation

如何在执行contextClick后获取第4个Web元素?很快右键单击完成上下文菜单关闭,所以我找不到第4个元素。 有没有办法右键单击上下文菜单并保持几秒钟? 我正在Selenium 3.6和FF 57中进行测试。 当我在chrome中运行相同的脚本时,它运行正常。

代码:

WebElement rghtclk = driver.findElement(By.xpath("//div[@class='QvFrame Document_CH08']/div[@class='QvContent']/div[@class='QvGrid']/div[1]/div[4]/div/div[1]/div[1]"));
        Actions rghtactn = new Actions(driver);
        rghtactn.contextClick(rghtclk).perform();
        Thread.sleep(5000);

0 个答案:

没有答案