从WebDriver Java中选择使用DoubleClick的文本

时间:2013-11-30 16:06:24

标签: java selenium selenium-webdriver

我想双击谷歌页面的搜索输入框,应该选择

这是我的代码:

    WebDriver driver = new FirefoxDriver();
    driver.navigate().to("http://www.google.com");
    WebElement oWE = driver.findElement(By.name("q"));
    WebDriverWait wait = new WebDriverWait(driver, 30);
    wait.until(ExpectedConditions.presenceOfElementLocated(By.name("q")));
    if (oWE.isDisplayed()) {
       System.out.println("Displayed");
       oWE.sendKeys("abcd");
       driver.findElement(By.id("gbqfb")).click();
       Actions oAction = new Actions(driver);
       oAction.moveToElement(oWE);
       oAction.doubleClick(oWE).build().perform();
    }

但未选择文字。

1.为什么不起作用?

2.我们总是使用By.ID,By.name等为什么我们不使用ById.Id ByName.name等 如果我们可以使用它,如果不是为什么我们不使用它?

2 个答案:

答案 0 :(得分:2)

如果你想选择所有文字你可以这样做......

driver.findElement(By.xpath(“xpath”))。sendKeys(Keys.chord(Keys.CONTROL,“a”));

答案 1 :(得分:-1)

您的代码非常完美:不要试图“双击”您提供的网络元素,而是尝试其他元素。

试试这个:

WebDriver driver = new FirefoxDriver();
    driver.navigate().to("http://jsbin.com/obeyu4/3");
    WebDriverWait wait = new WebDriverWait(driver, 30);
    Actions act = new Actions(driver);
    act.doubleClick(driver.findElement(By.id("golink"))).perform();
    Thread.sleep(3000);
    System.out.println(driver.getTitle());