下午好,
因此,我正在尝试从字段中复制一些文本,以便可以将其粘贴到测试中的其他位置。
public static void validateTestCaseCreated(){
driver.findElement(By.xpath("//*[@id='mainForm:testTitle']")).click();
Action builder;
Actions copy = new Actions(driver);
copy.sendKeys(Keys.CONTROL + "a");
copy.sendKeys(Keys.CONTROL + "c");
builder = copy.build();
builder.perform();
当它到达第 6 行时,它只发送 c,它忽略了 CONTROL。所以我的最终结果不是复制文本而是突出显示文本然后输入 c。