以下は私が使用しているコードです.Html5を使用して書かれた1つの公開Webサイトにアクセスします.コードは「One」をごみ箱にドラッグしようとしていますが、何もしません. それを機能させるための回避策はありますか?前もって感謝します!
FirefoxProfile profile = new FirefoxProfile();
profile.setEnableNativeEvents(true);
WebDriver driver = new FirefoxDriver(profile);
driver.get("http://html5demos.com/drag");
WebElement draggable = driver.findElement(By.id("one"));
WebElement droppable = driver.findElement(By.id("bin"));
new Actions(driver).dragAndDrop(draggable, droppable).build().perform();
追加情報は次のとおりです。
Selenium バージョン: 2.25.0 OS: Mac OS Lion ブラウザー: Firefox ブラウザー バージョン: 10.0.2 および 14.0.1