我正在尝试使用selenium3中的actions类中的moveToElement单击链接..但它无法正常工作.. 我已经尝试了动作类中的其他方法(doubleclick,draganddrop),但似乎都没有工作..
package Advanced.Actions;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Actions;
public class z_clickEvent {
public static void main(String[] args) {
// TODO Auto-generated method stub
String url = "https://www.myhcl.com/Login/home.aspx";
System.setProperty("webdriver.gecko.driver", "C:\\code\\lib\\browser drivers\\geckodriver.exe");
WebDriver driver = new FirefoxDriver();
driver.manage().window().maximize();
driver.get(url);
WebElement loginHelp = driver.findElement(By.linkText("Login Help"));
Actions action = new Actions(driver);
action.moveToElement(loginHelp).build().perform();
action.click().build().perform();
}
}
硒:3.1 FF:50.1
selenium 3中的actions类是否存在问题。
我得到的错误是 线程“main”中的异常org.openqa.selenium.UnsupportedCommandException:POST / session / 9988ddc4-ea82-41c2-86d8-3a3815609d0e / moveto与已知命令不匹配 构建信息:版本:'未知',修订版:'1969d75',时间:'2016-10-18 09:43:45 -0700'
答案 0 :(得分:1)
是的,它没有用,因为在geckodriver / marionette中尚未实现Actions API。