0

Selenium3 のアクション クラスで moveToElement を使用してリンクをクリックしようとしています。

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 のアクション クラスに問題はありますか。

私が得ているエラーは Exception in thread "main" org.openqa.selenium.UnsupportedCommandException: POST /session/9988ddc4-ea82-41c2-86d8-3a3815609d0e/moveto did not match a known command Build info: version: 'unknown' です、リビジョン: '1969d75'、時刻: '2016-10-18 09:43:45 -0700'

4

1 に答える 1

1

はい、アクション API が geckodriver/marionette にまだ実装されていないため、機能していません。

https://github.com/mozilla/geckodriver/issues/233

于 2017-01-12T21:52:55.590 に答える