try {
Actions actions = new Actions(driver);
actions.moveToElement(element, 10, 5).clickAndHold()
.moveByOffset(30, 0).release().perform();
Thread.sleep(2000);
driver.findElement(By.id("annotation_save_button")).click();
Thread.sleep(2000);
driver.findElement(By.id("transcript_more_options_icon")).click();
} catch (Exception e) {
e.printStackTrace();
}
我可以在 Firefox 中选择文本,但在 Chrome 中不能。在任一浏览器中运行这段代码时,我都没有遇到异常。