我想要做的就是將左邊欄中的元素拖到中間區域,如圖所示。但不工作,雖然沒有錯誤信息顯示。 image of the page 我的代碼是:提前 //drag and drop - not working WebElement element = driver.findElement(By.xpath("//*[@id='componentsSection']/div[1]/div[1]")); Thread.sleep(1000); WebElement target = driver.findElement(By.id("layoutSection")); Thread.sleep(1000); (new Actions(driver)).dragAndDrop(element, target).build().perform();
Selenium webdriver拖放不起作用(java)
謝謝!
您也可以嘗試以下操作: – kushal
試試這個我的答案和正確地更換內'from'和'to'網絡元素將XPath。 –