Example usage for org.openqa.selenium Keys ENTER

List of usage examples for org.openqa.selenium Keys ENTER

Introduction

In this page you can find the example usage for org.openqa.selenium Keys ENTER.

Prototype

Keys ENTER

To view the source code for org.openqa.selenium Keys ENTER.

Click Source Link

Usage

From source file:com.pentaho.ctools.issues.cde.editor.CDEDataPanel.java

License:Apache License

/**
 * ############################### Test Case 1 ###############################
 *
 * Test Case Name:/* w  w  w.j  a  v a2  s  .c  om*/
 *    This test is meant to validate all issues related to CDE's Data Panel
 *
 * Description:
 *    CDE-410: Shortcuts work
 *
 * Steps:
 *    1. Open CDE sample in edit mode, go to data panel and add some datasources
 *    2. Assert down, up, left and right shortcuts work on components panel
 *    3. Assert tab and enter shortcuts work on data panel
 *        
 **/
@Test
public void tc01_CDEDashboardEdit_DataPanel() {
    this.log.info("tc01_CDEDashboardEdit_DataPanel");

    /*
     * ## Step 1
     */
    //Open CDE sample in edit mode
    driver.get(PageUrl.CDE_DASHBOARD);
    this.elemHelper.WaitForElementInvisibility(driver, By.cssSelector("div.blockUI.blockOverlay"));

    //Go to Components Panel
    this.elemHelper.Click(driver, By.xpath("//div[@title='Datasources Panel']/a"));

    //Add some Datasources
    WebElement mdxExpander = this.elemHelper.FindElement(driver, By
            .xpath("//div[@id='cdfdd-datasources-palletePallete']//a[contains(text(),'MDX Queries')]/../span"));
    assertNotNull(mdxExpander);
    mdxExpander.click();
    WebElement addDenormalMdx = this.elemHelper.FindElement(driver, By.xpath(
            "//div[@id='cdfdd-datasources-palletePallete']//a[@title='denormalizedMdx over mondrianJdbc']"));
    assertNotNull(addDenormalMdx);
    addDenormalMdx.click();
    WebElement addMDX = this.elemHelper.FindElement(driver,
            By.xpath("//div[@id='cdfdd-datasources-palletePallete']//a[@title='mdx over mondrianJndi']"));
    assertNotNull(addMDX);
    addMDX.click();
    WebElement sqlExpander = this.elemHelper.FindElement(driver, By
            .xpath("//div[@id='cdfdd-datasources-palletePallete']//a[contains(text(),'SQL Queries')]/../span"));
    assertNotNull(sqlExpander);
    sqlExpander.click();
    WebElement addSqlJdbc = this.elemHelper.FindElement(driver,
            By.xpath("//div[@id='cdfdd-datasources-palletePallete']//a[@title='sql over sqlJdbc']"));
    assertNotNull(addSqlJdbc);
    addSqlJdbc.click();
    WebElement addSqlJndi = this.elemHelper.FindElement(driver,
            By.xpath("//div[@id='cdfdd-datasources-palletePallete']//a[@title='sql over sqlJndi']"));
    assertNotNull(addSqlJndi);
    addSqlJndi.click();

    /*
     * ## Step 2
     */
    //Select first chart group
    this.elemHelper.Click(driver, By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr/td"));
    this.elemHelper.WaitForAttributeValue(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr"), "class",
            "expanded initialized parent ui-state-active");
    String mdxGroup = this.elemHelper
            .FindElement(driver, By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr"))
            .getAttribute("class");
    assertEquals(mdxGroup, "expanded initialized parent ui-state-active");

    //Assert groups are expanded and clicking left will collapse them, also assert down arrow moves between showing elements
    WebElement mdxDenormal = this.elemHelper.FindElement(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[2]"));
    assertNotNull(mdxDenormal);
    WebElement sqlJdbc = this.elemHelper.FindElement(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[5]"));
    assertNotNull(sqlJdbc);
    Actions a = new Actions(driver);
    a.sendKeys(Keys.LEFT).sendKeys(Keys.DOWN).sendKeys(Keys.LEFT).build().perform();
    this.elemHelper.WaitForAttributeValue(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[4]"), "class",
            "initialized parent ui-state-active collapsed");
    String otherGroup = this.elemHelper
            .FindElement(driver, By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[4]"))
            .getAttribute("class");
    assertEquals(otherGroup, "initialized parent ui-state-active collapsed");
    this.elemHelper.WaitForElementInvisibility(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[2]"));
    this.elemHelper.WaitForElementInvisibility(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[5]"));
    assertTrue(this.elemHelper.WaitForElementInvisibility(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[2]")));
    assertTrue(this.elemHelper.WaitForElementInvisibility(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[5]")));

    //Assert clicking right arrow expands groups    
    a.sendKeys(Keys.RIGHT).sendKeys(Keys.UP).sendKeys(Keys.RIGHT).build().perform();
    mdxDenormal = this.elemHelper.FindElement(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[2]"));
    assertNotNull(mdxDenormal);
    sqlJdbc = this.elemHelper.FindElement(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[5]"));
    assertNotNull(sqlJdbc);

    //Go to to sqlJndi and assert it's selected
    a.sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).sendKeys(Keys.DOWN)
            .build().perform();
    this.elemHelper.WaitForAttributeValue(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[6]"), "class",
            "child-of-SQL initialized collapsed ui-state-active");
    String areaChartClass = this.elemHelper
            .FindElement(driver, By.xpath("//table[@id='table-cdfdd-datasources-datasources']/tbody/tr[6]"))
            .getAttribute("class");
    assertEquals(areaChartClass, "child-of-SQL initialized collapsed ui-state-active");

    /*
     * ## Step 3
     */
    //Click tab key and assert focus has changed to properties table
    a.sendKeys(Keys.TAB).build().perform();
    this.elemHelper.WaitForAttributeValue(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-properties']/tbody/tr"), "class",
            "initialized ui-state-active");
    String nameProperty = this.elemHelper
            .FindElement(driver, By.xpath("//table[@id='table-cdfdd-datasources-properties']/tbody/tr"))
            .getAttribute("class");
    assertEquals(nameProperty, "initialized ui-state-active");

    //Click enter to change following properties "Name"
    a.sendKeys(Keys.ENTER).sendKeys("a").sendKeys(Keys.ENTER).sendKeys(Keys.DOWN).sendKeys(Keys.DOWN)
            .sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).build().perform();

    /*
     * ## Step 4
     */
    //Change "Parameter" and assert using down arrow to navigate is blocked
    this.elemHelper.WaitForAttributeValue(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-properties']/tbody/tr[5]"), "class",
            "initialized ui-state-active");
    String parameterProperty = this.elemHelper
            .FindElement(driver, By.xpath("//table[@id='table-cdfdd-datasources-properties']/tbody/tr[5]"))
            .getAttribute("class");
    assertEquals(parameterProperty, "initialized ui-state-active");
    a.sendKeys(Keys.ENTER).build().perform();
    assertNotNull(this.elemHelper.FindElement(driver, By.id("popup")));
    assertNotNull(this.elemHelper.FindElement(driver, By.id("arg_0")));
    assertNotNull(this.elemHelper.FindElement(driver, By.id("val_0")));
    a.sendKeys(Keys.TAB).sendKeys(Keys.TAB).sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).sendKeys(Keys.UP).build()
            .perform();

    WebElement elemIntegerHighlight = this.elemHelper.WaitForElementPresenceAndVisible(driver, By.cssSelector(
            "ul#select2-results-1.select2-results li.select2-results-dept-0.select2-result.select2-result-selectable.select2-highlighted"));
    assertNotNull(elemIntegerHighlight);

    WebElement closePopup = this.elemHelper.FindElement(driver, By.id("popup_state0_buttonCancel"));
    assertNotNull(closePopup);
    closePopup.click();
    assertTrue(this.elemHelper.WaitForElementNotPresent(driver, By.id("popup"), 3));

    this.elemHelper.WaitForAttributeValue(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-properties']/tbody/tr[5]"), "class",
            "initialized ui-state-active");
    parameterProperty = this.elemHelper
            .FindElement(driver, By.xpath("//table[@id='table-cdfdd-datasources-properties']/tbody/tr[5]"))
            .getAttribute("class");
    assertEquals(parameterProperty, "initialized ui-state-active");

    //assert values are changed
    String nameValue = this.elemHelper.WaitForElementPresentGetText(driver,
            By.xpath("//table[@id='table-cdfdd-datasources-properties']/tbody/tr/td[2]"));
    assertEquals(nameValue, "a");
}

From source file:com.pentaho.ctools.issues.cde.editor.CDELayoutPanel.java

License:Apache License

/**
 * ############################### Test Case 1 ###############################
 *
 * Test Case Name:/*from  w  w  w  . ja v a 2  s. co m*/
 *    This test is meant to validate all issues related to CDE's Layout Panel
 *
 * Description:
 *    CDE-270: Layout elements are draggable
 *    CDE-366: Style and Dashboard type changes are kept when saving dashboard
 *    CDE-395: Bootstrap is default renderer
 *    CDE-402: When applying template, user is asked for confirmation before it is applied
 *    CDE-406: Drag and Drop of Freeform elements works
 *    CDE-407: Able to duplicate spacers
 *    CDE-410: Shortcuts work
 *    CDE-425: Shortcuts work
 *    CDE-432: Left is the first option of text alignment
 *    CDE-527: Only Column can be direct child of Rows in a bootstrap dashboard
 *    CDE-528: If a bootstrap Column has no Xs defined a default of 12 is used
 *
 * Steps:
 *    1. Open new CDE dashboard and assert bootstrap is selected as renderer
 *    2. Use shortcuts to add and delete elements
 *    3. Add some elements and Drag them to other positions, asserting new positions
 *    4. Set template and assert it is correctly applied
 *    5. Assert navigation shortcuts work as expected and set clear Xs of an element
 *    6. Edit Settings and save dashboard. Preview dashboard and assert Xs is 12 by default
 */
@Test
public void tc01_CDEDashboardEdit_LayoutPanel() {
    this.log.info("tc01_CDEDashboardEdit_LayoutPanel");

    /*
     * ## Step 1
     */
    //Go to New CDE Dashboard
    driver.get(PageUrl.CDE_DASHBOARD);
    this.elemHelper.WaitForElementInvisibility(driver, By.cssSelector("div.blockUI.blockOverlay"));

    //Open Dashboard Settings and assert bootstrap is selected as renderer
    WebElement settingsLink = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@id='headerLinks']//a[@onclick='cdfdd.saveSettings()']"));
    assertNotNull(settingsLink);
    settingsLink.click();
    WebElement settingsPopup = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@id='popup']//div[@id='popupstates']"));
    assertNotNull(settingsPopup);
    Select dashboardType = new Select(
            this.elemHelper.WaitForElementPresenceAndVisible(driver, By.id("rendererInput")));
    String selectedOption = dashboardType.getFirstSelectedOption().getAttribute("value");
    assertEquals("bootstrap", selectedOption);
    WebElement cancelButton = this.elemHelper.FindElement(driver, By.id("popup_state0_buttonCancel"));
    assertNotNull(cancelButton);
    cancelButton.click();
    this.elemHelper.WaitForElementNotPresent(driver, By.xpath("//div[@id='popup']//div[@id='popupstates']"));

    /*
     * ## Step 2
     */
    //Add Row and verify that columns and html can not be added outside of rows
    this.elemHelper.Click(driver, By.id("table-cdfdd-layout-tree"));
    Actions a = new Actions(driver);
    a.sendKeys("c").sendKeys("h").sendKeys("r").build().perform();
    this.elemHelper.Click(driver, By.id("table-cdfdd-layout-tree"));

    //Add Column
    a.sendKeys("c").build().perform();

    //Add Html
    this.elemHelper.Click(driver, By.id("table-cdfdd-layout-tree"));
    a.sendKeys("h").build().perform();

    //Assert elements were successfully created
    WebElement row = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr/td"));
    assertNotNull(row);
    this.elemHelper.WaitForTextPresence(driver, By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr/td"),
            "Row");
    String rowText = row.getText();
    assertEquals(rowText, "Row");
    WebElement column = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[2]/td"));
    assertNotNull(column);
    this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[2]/td"), "Column");
    String columnText = column.getText();
    assertEquals(columnText, "Column");
    WebElement html = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[3]/td"));
    assertNotNull(html);
    this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[3]/td"), "Html");
    String htmlText = html.getText();
    assertEquals(htmlText, "Html");

    //Add spacer and duplicate it
    column.click();
    WebElement spacerButton = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//a[@title='Add Space']"));
    assertNotNull(spacerButton);
    spacerButton.click();
    WebElement spacer = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[4]/td"));
    assertNotNull(spacer);
    this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[4]/td"), "Space");
    String spacerText = spacer.getText();
    assertEquals(spacerText, "Space");
    column.click();
    spacer.click();
    a.keyDown(Keys.SHIFT).sendKeys("d").keyUp(Keys.SHIFT).build().perform();
    spacer = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[4]/td"));
    assertNotNull(spacer);
    WebElement spacer2 = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[5]/td"));
    assertNotNull(spacer2);
    this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[4]/td"), "Space");
    spacerText = spacer.getText();
    assertEquals(spacerText, "Space");
    this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[5]/td"), "Space");
    String spacerText2 = spacer2.getText();
    assertEquals(spacerText2, "Space");

    //Delete elements and assert they are no longer present
    this.elemHelper.Click(driver, By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr/td"));
    a.keyDown(Keys.SHIFT).sendKeys("x").keyUp(Keys.SHIFT).build().perform();
    assertTrue(this.elemHelper.WaitForElementNotPresent(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr/td")));

    /*
     * ## Step 3
     */
    //Add elements
    WebElement addRow = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//a[@title='Add Row']"));
    assertNotNull(addRow);
    addRow.click();
    WebElement addColumn = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//a[@title='Add Columns']"));
    WebElement addFreeForm = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//a[@title='Add FreeForm']"));
    WebElement addBootstrap = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//a[@title='Add Bootstrap Panel']"));
    assertNotNull(addFreeForm);
    assertNotNull(addColumn);
    assertNotNull(addBootstrap);
    this.elemHelper.WaitForElementPresenceAndVisible(driver, By.xpath("//a[@title='Add Bootstrap Panel']"))
            .click();
    this.elemHelper.WaitForElementPresenceAndVisible(driver, By.xpath("//a[@title='Add Row']")).click();
    this.elemHelper.WaitForElementPresenceAndVisible(driver, By.xpath("//a[@title='Add FreeForm']")).click();
    this.elemHelper.WaitForElementPresenceAndVisible(driver, By.xpath("//a[@title='Add Row']")).click();
    this.elemHelper.WaitForElementPresenceAndVisible(driver, By.xpath("//a[@title='Add Columns']")).click();
    this.elemHelper.WaitForElementPresenceAndVisible(driver, By.xpath("//a[@title='Add Columns']")).click();
    this.elemHelper.WaitForElementPresenceAndVisible(driver, By.xpath("//a[@title='Add FreeForm']")).click();

    //Assert elements on Layout
    String row1 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr/td"), "Row");
    assertEquals("Row", row1);
    String bootstrap = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[2]/td"), "Bootstrap Panel");
    assertEquals("Bootstrap Panel", bootstrap);
    String row2 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[6]/td"), "Row");
    assertEquals("Row", row2);
    String freeform1 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[7]/td"), "FreeForm");
    assertEquals("FreeForm", freeform1);
    String row3 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[8]/td"), "Row");
    assertEquals("Row", row3);
    String column1 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[9]/td"), "Column");
    assertEquals("Column", column1);
    String column2 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[10]/td"), "Column");
    assertEquals("Column", column2);
    String freeform2 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[11]/td"), "FreeForm");
    assertEquals("FreeForm", freeform2);

    //Assert bootstrap and freeform are parent elements
    String bootstrapClass = this.elemHelper.GetAttribute(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[2]"), "class");
    assertTrue(bootstrapClass.contains("parent"));
    String freeformClass = this.elemHelper.GetAttribute(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[7]"), "class");
    assertTrue(freeformClass.contains("parent"));

    //Move elements
    this.elemHelper.DragAndDrop(driver, By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[11]/td"),
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[1]/td"));
    this.elemHelper.DragAndDrop(driver, By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[8]/td"),
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[2]/td"));

    //Assert new positions
    freeform1 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr/td"), "FreeForm");
    assertEquals("FreeForm", freeform1);
    freeform2 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[2]/td"), "FreeForm");
    assertEquals("FreeForm", freeform2);
    row1 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[3]/td"), "Row");
    assertEquals("Row", row1);
    column1 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[4]/td"), "Column");
    assertEquals("Column", column1);
    column2 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[5]/td"), "Column");
    assertEquals("Column", column2);
    row2 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[6]/td"), "Row");
    assertEquals("Row", row2);
    bootstrap = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[7]/td"), "Bootstrap Panel");
    assertEquals("Bootstrap Panel", bootstrap);
    row3 = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[11]/td"), "Row");
    assertEquals("Row", row3);

    /*
     * ## Step 4
     */
    //Apply template

    WebElement templateButton = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//a[@title='Apply Template']"));
    assertNotNull(templateButton);
    templateButton.click();
    this.elemHelper.WaitForFrameReady(driver, By.id("popup"));
    WebElement templatePopup = this.elemHelper.WaitForElementPresenceAndVisible(driver, By.id("popup"));
    assertNotNull(templatePopup);
    String templateText = this.elemHelper
            .FindElement(driver, By.xpath("//div[@class='template-scroll']/div[2]/span")).getText();
    assertEquals("2 Columns Template", templateText);
    this.elemHelper.Click(driver, By.xpath("//div[@class='template-scroll']/div[2]/div/img"));
    WebElement templateOk = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.id("popup_state0_buttonOk"));
    assertNotNull(templateOk);
    this.elemHelper.Click(driver, By.id("popup_state0_buttonOk"));
    assertTrue(this.elemHelper.WaitForElementNotPresent(driver, By.id("popup")));
    WebElement confirmationPopup = this.elemHelper.WaitForElementPresenceAndVisible(driver, By.id("popup"));
    assertNotNull(confirmationPopup);
    String warningText = this.elemHelper.WaitForElementPresentGetText(driver,
            By.xpath("//div[@class='popup-body-container layout-popup']"));
    assertEquals("Are you sure you want to load the template?WARNING: Dashboard Layout will be overwritten!",
            warningText);
    WebElement confirmationOk = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.id("popup_state0_buttonOk"));
    assertNotNull(confirmationOk);
    this.elemHelper.Click(driver, By.id("popup_state0_buttonOk"));
    this.elemHelper.WaitForElementNotPresent(driver, By.id("popup"));

    //Asset elements were created
    String trtdText = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr/td"), "Row");
    String trtd2Text = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr/td[2]"), "Header");
    String tr4tdText = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[4]/td"), "Row");
    String tr4td2Text = this.elemHelper.WaitForTextPresence(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[4]/td[2]"), "Spacer");
    assertEquals("Row", trtdText);
    assertEquals("Header", trtd2Text);
    assertEquals("Row", tr4tdText);
    assertEquals("Spacer", tr4td2Text);

    /*
     * ## Step 5
     */
    //Press down and assert second Row is selected
    this.elemHelper.Click(driver, By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr/td"));
    String firstRowClass = this.elemHelper
            .FindElement(driver, By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr"))
            .getAttribute("class");
    assertEquals(firstRowClass, "ui-draggable ui-droppable initialized parent collapsed ui-state-active");
    a.sendKeys(Keys.DOWN).build().perform();
    this.elemHelper.WaitForAttributeValue(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[4]"), "class",
            "ui-draggable ui-droppable initialized ui-state-active");
    String secondRowClass = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[4]")).getAttribute("class");
    assertEquals(secondRowClass, "ui-draggable ui-droppable initialized ui-state-active");

    //Assert columns aren't visible, go to row and expand it and then assert columns are visible
    this.elemHelper.WaitForElementInvisibility(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[6]"));
    this.elemHelper.WaitForElementInvisibility(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[7]"));

    a.sendKeys(Keys.DOWN).sendKeys(Keys.RIGHT).build().perform();
    WebElement firstColumn = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[6]"));
    assertNotNull(firstColumn);
    WebElement secondColumn = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[7]"));
    assertNotNull(secondColumn);

    //Go to second column and back to first and assert first column is selected
    a.sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).sendKeys("c").sendKeys(Keys.TAB).build().perform();
    this.elemHelper.WaitForAttributeValue(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[8]"), "class", "ui-state-active");
    String firstColumnClass = this.elemHelper
            .FindElement(driver, By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[8]"))
            .getAttribute("class");
    assertTrue(firstColumnClass.contains("ui-state-active"));

    //Click tab key and assert focus has changed to properties table
    a.sendKeys(Keys.TAB).build().perform();
    this.elemHelper.WaitForAttributeValue(driver,
            By.xpath("//table[@id='table-cdfdd-layout-properties']/tbody/tr"), "class",
            "initialized ui-state-active");
    String firstPropertyClass = this.elemHelper
            .FindElement(driver, By.xpath("//table[@id='table-cdfdd-layout-properties']/tbody/tr"))
            .getAttribute("class");
    assertEquals(firstPropertyClass, "initialized ui-state-active");

    //Click enter to change following properties "Name", "Span size" and "Right border"
    a.sendKeys(Keys.ENTER).sendKeys("a").sendKeys(Keys.ENTER).sendKeys(Keys.DOWN).build().perform();

    //assert name has changed
    String columnName = this.elemHelper.WaitForElementPresentGetText(driver,
            By.xpath("//table[@id='table-cdfdd-layout-properties']/tbody/tr/td[2]"));
    assertEquals(columnName, "a");

    //Change "Extra Small Devices" and "Text Align"
    this.elemHelper.WaitForAttributeValue(driver,
            By.xpath("//table[@id='table-cdfdd-layout-properties']/tbody/tr[2]"), "class",
            "initialized ui-state-active");
    String xsInput = this.elemHelper
            .FindElement(driver, By.xpath("//table[@id='table-cdfdd-layout-properties']/tbody/tr[2]"))
            .getAttribute("class");
    assertEquals(xsInput, "initialized ui-state-active");
    a.sendKeys(Keys.ENTER).build().perform();
    this.elemHelper
            .FindElement(driver,
                    By.xpath("//table[@id='table-cdfdd-layout-properties']/tbody/tr[2]/td[2]/form/input"))
            .clear();
    a.sendKeys(Keys.ENTER).build().perform();

    //assert values are changed
    String xsValue = this.elemHelper.WaitForElementPresentGetText(driver,
            By.xpath("//table[@id='table-cdfdd-layout-properties']/tbody/tr[2]/td[2]"));
    assertEquals(xsValue, "-");

    a.sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).sendKeys(Keys.DOWN)
            .sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).sendKeys(Keys.ENTER)
            .sendKeys(Keys.DOWN).sendKeys(Keys.DOWN).sendKeys(Keys.ENTER).sendKeys(Keys.ENTER).build()
            .perform();
    String alignValue = this.elemHelper.WaitForElementPresentGetText(driver,
            By.xpath("//table[@id='table-cdfdd-layout-properties']/tbody/tr[10]/td[2]"));
    assertEquals(alignValue, "Left");
    //Click tab and assert focus has gone back to first table
    a.sendKeys(Keys.TAB).build().perform();
    this.elemHelper.WaitForAttributeValue(driver,
            By.xpath("//table[@id='table-cdfdd-layout-properties']/tbody/tr[8]"), "class", "initialized");
    String columnClass = this.elemHelper
            .FindElement(driver, By.xpath("//table[@id='table-cdfdd-layout-properties']/tbody/tr[8]"))
            .getAttribute("class");
    assertEquals(columnClass, "initialized");

    //Collapse Row and assert columns aren't showing
    a.sendKeys(Keys.UP).sendKeys(Keys.UP).sendKeys(Keys.UP).sendKeys(Keys.LEFT).build().perform();
    this.elemHelper.WaitForElementInvisibility(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[6]"));
    this.elemHelper.WaitForElementInvisibility(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[7]"));
    this.elemHelper.WaitForElementInvisibility(driver,
            By.xpath("//table[@id='table-cdfdd-layout-tree']/tbody/tr[8]"));

    /*
     * ## Step 6
     */
    //Save Dashboard
    WebElement saveDashboard = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@id='headerLinks']//a[@id='Save']"));
    assertNotNull(saveDashboard);
    saveDashboard.click();
    WebElement folderSelector = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@id='saveAsFEContainer']//a[@rel='public/']"));
    assertNotNull(folderSelector);
    folderSelector.click();
    WebElement inputName = this.elemHelper.WaitForElementPresenceAndVisible(driver, By.id("fileInput"));
    assertNotNull(inputName);
    inputName.sendKeys("CDE366");
    WebElement okButton = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@class='popupbuttons']/button[@id='popup_state0_buttonOk']"));
    okButton.click();
    this.elemHelper.WaitForElementNotPresent(driver, By.xpath("//div[@class='popupbuttons']"));
    WebElement title = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@title='CDE366']"));
    assertNotNull(title);
    this.failure = 0;

    //Open Dashboard Settings
    settingsLink = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@id='headerLinks']//a[@onclick='cdfdd.saveSettings()']"));
    assertNotNull(settingsLink);
    settingsLink.click();
    settingsPopup = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@id='popup']//div[@id='popupstates']"));
    assertNotNull(settingsPopup);

    //Edit Style and Dashboard Type
    Select style = new Select(this.elemHelper.WaitForElementPresenceAndVisible(driver, By.id("styleInput")));
    style.selectByVisibleText("WDDocs");
    Select dashType = new Select(
            this.elemHelper.WaitForElementPresenceAndVisible(driver, By.id("rendererInput")));
    dashType.selectByVisibleText("blueprint");

    //Click save and assert user gets a message of "Saved Successfully"
    okButton = this.elemHelper.WaitForElementPresenceAndVisible(driver, By.id("popup_state0_buttonOk"));
    assertNotNull(okButton);
    okButton.click();
    WebElement notifySuccess = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@id='notifyBar']"));
    assertNotNull(notifySuccess);
    String successMessage = this.elemHelper.WaitForElementPresentGetText(driver,
            By.xpath("//div[@id='notifyBar']/div[@class='notify-bar-message']"));
    assertEquals("Dashboard Settings saved successfully", successMessage);

    //Open dashboard in preview mode
    this.elemHelper.Get(driver, PageUrl.ISSUES_CDE_366);
    this.elemHelper.WaitForElementInvisibility(driver, By.cssSelector("div.blockUI.blockOverlay"));

    //Assert Xs is set to 12 as default
    WebElement xsColumn = this.elemHelper.FindElement(driver, By.xpath("//div[@id='Body']/div[3]"));
    assertNotNull(xsColumn);
    String xsNumber = xsColumn.getAttribute("class");
    assertEquals("col-xs-12 last", xsNumber);

    //Open dashboard in edit
    this.elemHelper.Get(driver, PageUrl.ISSUES_CDE_366_EDIT);

    //Open Settings and assert Style and Dashboard Type were saved 
    settingsLink = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@id='headerLinks']//a[@onclick='cdfdd.saveSettings()']"));
    assertNotNull(settingsLink);
    settingsLink.click();
    settingsPopup = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@id='popup']//div[@id='popupstates']"));
    assertNotNull(settingsPopup);
    WebElement selectedStyle = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//select[@id='styleInput']/option[@selected='']"));
    String selectedValue = selectedStyle.getAttribute("value");
    assertEquals("WDDocs", selectedValue);
    WebElement selectedDash = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//select[@id='rendererInput']/option[@selected='']"));
    selectedValue = selectedDash.getAttribute("value");
    assertEquals("blueprint", selectedValue);

    /*
     * ## Step 7
     */
    BrowseFiles browse = new BrowseFiles(driver);
    browse.DeleteMultipleFilesByName("/public", "CDE366");
    browse.EmptyTrash();
    this.failure = 1;
}

From source file:com.pentaho.ctools.issues.cdf.CDF149.java

License:Apache License

/**
 * ############################### Test Case 1 ###############################
 *
 * Test Case Name://ww w  . jav a  2s.co m
 *    Assert Values Normalized property is exposed and working
 *
 * Description:
 *    The test pretends validate the CDF-149 issue, so Values Normalized property is exposed and when set
 *    to True makes chart bars appear as percentage.
 *
 * Steps:
 *    1. Open CDE Sample, go to Components Panel and select the Bar Chart
 *    2. Click Advanced Properties and set Values Normalized to true
 *    3. Click Preview and assert bars are rendered as percentage of total
 */
@Test
public void tc01_CCCBarChart_ValuesNormalized() {
    this.log.info("tc01_CCCBarChart_ValuesNormalized");

    /*
     * ## Step 1
     */
    //Open CDE Sample
    driver.get(baseUrl + "api/repos/%3Apublic%3Aplugin-samples%3Apentaho-cdf-dd%3Acde_sample1.wcdf/wcdf.edit");

    //Assert Panel selectors and select Components
    WebElement element = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@class='cdfdd-modes']/div[@title='Datasources Panel']"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@class='cdfdd-modes']/div[@title='Components Panel']"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@class='cdfdd-modes']/div[@title='Layout Panel']"));
    assertNotNull(element);
    this.elemHelper.Click(driver, By.xpath("//div[@class='cdfdd-modes']/div[@title='Components Panel']/a"));
    String text = this.elemHelper.GetAttribute(driver,
            By.xpath("//div[@class='cdfdd-modes']/div[@title='Components Panel']"), "class");
    assertEquals("panelButton panelButton-active", text);

    //Select Bar Chart
    element = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@id='cdfdd-components-components']//tr[@id='CHARTS']/td/span"));
    assertNotNull(element);
    element.click();
    element = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//div[@id='cdfdd-components-components']//tr[2]/td"));
    assertNotNull(element);
    text = element.getText();
    assertEquals("CCC Bar Chart", text);
    element.click();
    text = this.elemHelper.GetAttribute(driver, By.xpath("//div[@id='cdfdd-components-components']//tr[2]"),
            "class");
    assertEquals("child-of-CHARTS initialized collapsed ui-state-active", text);

    /*
     * ## Step 2
     */
    //Click Advanced Properties
    element = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.cssSelector("div.advancedProperties.propertiesUnSelected"));
    assertNotNull(element);
    element.click();
    element = this.elemHelper.WaitForElementPresenceAndVisible(driver, By.xpath(
            "//table[@id='table-cdfdd-components-properties']//td[@title='Priority for component execution component. Lower values have higher priority']"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.cssSelector("div.advancedProperties.propertiesSelected"));
    assertNotNull(element);

    //Find Values Normalized property and set it's value to True
    element = this.elemHelper.WaitForElementPresenceAndVisible(driver,
            By.xpath("//table[@id='table-cdfdd-components-properties']//td[text()='valuesNormalized']"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(driver, By
            .xpath("//table[@id='table-cdfdd-components-properties']//td[text()='valuesNormalized']/../td[2]"));
    assertNotNull(element);
    element.click();
    WebElement normalizedInput = this.elemHelper.WaitForElementPresenceAndVisible(driver, By.xpath(
            "//table[@id='table-cdfdd-components-properties']//td[text()='valuesNormalized']/../td[2]/form/input"));
    normalizedInput.clear();
    normalizedInput.sendKeys("True");
    normalizedInput.sendKeys(Keys.ENTER);
    text = this.elemHelper.WaitForElementPresentGetText(driver, By
            .xpath("//table[@id='table-cdfdd-components-properties']//td[text()='valuesNormalized']/../td[2]"));
    assertEquals("True", text);

    /*
     * ## Step 3
     */
    //Click Preview button
    this.elemHelper.Click(driver, By.id("previewButton"));

    //Wait for fancybox and assert chart is rendered and height legends are to 100
    WebElement elementFrame = this.elemHelper.FindElement(driver, By.xpath("//iframe"));
    WebDriver frame = driver.switchTo().frame(elementFrame);
    this.elemHelper.WaitForElementInvisibility(driver, By.cssSelector("div.blockUI.blockOverlay"));
    element = this.elemHelper.WaitForElementPresenceAndVisible(frame, By.id("chartprotovis"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(frame, By.xpath(
            "//div[@id='chartprotovis']/*[local-name()='svg' and namespace-uri()='http://www.w3.org/2000/svg']/*[local-name()='g']/*[local-name()='g'][3]/*[local-name()='g']/*[local-name()='g'][2]/*[local-name()='g']/*[local-name()='g']/*[local-name()='g'][4]/*[local-name()='rect'][2]"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(frame, By.xpath(
            "//div[@id='chartprotovis']/*[local-name()='svg' and namespace-uri()='http://www.w3.org/2000/svg']/*[local-name()='g']/*[local-name()='g'][3]/*[local-name()='g']/*[local-name()='g'][2]/*[local-name()='g']/*[local-name()='g']/*[local-name()='g'][4]/*[local-name()='rect'][3]"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(frame, By.xpath(
            "//div[@id='chartprotovis']/*[local-name()='svg' and namespace-uri()='http://www.w3.org/2000/svg']/*[local-name()='g']/*[local-name()='g'][3]/*[local-name()='g']/*[local-name()='g'][2]/*[local-name()='g']/*[local-name()='g']/*[local-name()='g'][4]/*[local-name()='rect'][1]"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(frame, By.xpath(
            "//div[@id='chartprotovis']/*[local-name()='svg' and namespace-uri()='http://www.w3.org/2000/svg']/*[local-name()='g']/*[local-name()='g'][3]/*[local-name()='g']/*[local-name()='g'][2]/*[local-name()='g']/*[local-name()='g']/*[local-name()='g'][4]/*[local-name()='rect'][4]"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(frame, By.xpath(
            "//div[@id='chartprotovis']/*[local-name()='svg' and namespace-uri()='http://www.w3.org/2000/svg']/*[local-name()='g']/*[local-name()='g'][3]/*[local-name()='g']/*[local-name()='g'][2]/*[local-name()='g']/*[local-name()='g']/*[local-name()='g'][4]/*[local-name()='rect'][5]"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(frame, By.xpath(
            "//div[@id='chartprotovis']/*[local-name()='svg' and namespace-uri()='http://www.w3.org/2000/svg']/*[local-name()='g']/*[local-name()='g'][3]/*[local-name()='g']/*[local-name()='g'][2]/*[local-name()='g']/*[local-name()='g']/*[local-name()='g'][4]/*[local-name()='rect'][6]"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(frame, By.xpath(
            "//div[@id='chartprotovis']/*[local-name()='svg' and namespace-uri()='http://www.w3.org/2000/svg']/*[local-name()='g']/*[local-name()='g'][3]/*[local-name()='g']/*[local-name()='g'][2]/*[local-name()='g']/*[local-name()='g']/*[local-name()='g'][4]/*[local-name()='rect'][7]"));
    assertNotNull(element);
    element = this.elemHelper.WaitForElementPresenceAndVisible(frame, By.xpath(
            "//div[@id='chartprotovis']/*[local-name()='svg' and namespace-uri()='http://www.w3.org/2000/svg']/*[local-name()='g']/*[local-name()='g'][3]/*[local-name()='g']/*[local-name()='g'][5]/*[local-name()='g']//*[local-name()='text'][text()='100']"));
    assertNotNull(element);
}

From source file:com.pramati.wavemaker.pages.Deployment.java

License:Open Source License

public void navigateToNewUrl(String url) {
    driver.get(url);/*from w  ww .j  a  v a 2  s.c  o  m*/
    try {
        Thread.sleep(3000);
    } catch (InterruptedException e) {

    }
    Actions actions = new Actions(driver);
    actions.sendKeys(Keys.ENTER).build().perform();
}

From source file:com.seleniumtests.webelements.ButtonElement.java

License:Apache License

@Override
public void click() {
    TestLogging.logWebStep(null, "click on " + toHTML(), false);

    BrowserType browser = WebUIDriver.getWebUIDriver().getConfig().getBrowser();
    if (browser == BrowserType.InternetExplore) {
        super.sendKeys(Keys.ENTER);
    } else {//w  w w  .j av  a2 s  .c  o  m
        super.click();
    }
}

From source file:com.seltaf.webelements.ButtonElement.java

License:Apache License

@Override
public void click() {
    SeltafTestLogger.logWebStep(null, "click on " + toHTML(), false);

    BrowserType browser = DriverManager.getDriverManager().getConfig().getBrowser();
    if (browser == BrowserType.InternetExplore) {
        super.sendKeys(Keys.ENTER);
    } else {/*from w  w  w  .  j a v a 2 s  .  co m*/
        super.click();
    }
}

From source file:com.stratio.qa.specs.WhenGSpec.java

License:Apache License

/**
 * Type a {@code text} on an numbered {@code index} previously found element.
 *
 * @param text/*from w w w . j a v a2s .  com*/
 * @param index
 */
@When("^I type '(.+?)' on the element on index '(\\d+?)'$")
public void seleniumType(@Transform(NullableStringConverter.class) String text, Integer index) {
    assertThat(this.commonspec, commonspec.getPreviousWebElements())
            .as("There are less found elements than required").hasAtLeast(index);
    while (text.length() > 0) {
        if (-1 == text.indexOf("\\n")) {
            commonspec.getPreviousWebElements().getPreviousWebElements().get(index).sendKeys(text);
            text = "";
        } else {
            commonspec.getPreviousWebElements().getPreviousWebElements().get(index)
                    .sendKeys(text.substring(0, text.indexOf("\\n")));
            commonspec.getPreviousWebElements().getPreviousWebElements().get(index).sendKeys(Keys.ENTER);
            text = text.substring(text.indexOf("\\n") + 2);
        }
    }
}

From source file:com.thoughtworks.selenium.webdriven.commands.SendKeys.java

License:Apache License

@Override
protected Void handleSeleneseCommand(WebDriver driver, String locator, String value) {
    alertOverride.replaceAlertMethod(driver);

    value = value.replace("${KEY_ALT}", Keys.ALT);
    value = value.replace("${KEY_CONTROL}", Keys.CONTROL);
    value = value.replace("${KEY_CTRL}", Keys.CONTROL);
    value = value.replace("${KEY_META}", Keys.META);
    value = value.replace("${KEY_COMMAND}", Keys.COMMAND);
    value = value.replace("${KEY_SHIFT}", Keys.SHIFT);

    value = value.replace("${KEY_BACKSPACE}", Keys.BACK_SPACE);
    value = value.replace("${KEY_BKSP}", Keys.BACK_SPACE);
    value = value.replace("${KEY_DELETE}", Keys.DELETE);
    value = value.replace("${KEY_DEL}", Keys.DELETE);
    value = value.replace("${KEY_ENTER}", Keys.ENTER);
    value = value.replace("${KEY_EQUALS}", Keys.EQUALS);
    value = value.replace("${KEY_ESCAPE}", Keys.ESCAPE);
    value = value.replace("${KEY_ESC}", Keys.ESCAPE);
    value = value.replace("${KEY_INSERT}", Keys.INSERT);
    value = value.replace("${KEY_INS}", Keys.INSERT);
    value = value.replace("${KEY_PAUSE}", Keys.PAUSE);
    value = value.replace("${KEY_SEMICOLON}", Keys.SEMICOLON);
    value = value.replace("${KEY_SPACE}", Keys.SPACE);
    value = value.replace("${KEY_TAB}", Keys.TAB);

    value = value.replace("${KEY_LEFT}", Keys.LEFT);
    value = value.replace("${KEY_UP}", Keys.UP);
    value = value.replace("${KEY_RIGHT}", Keys.RIGHT);
    value = value.replace("${KEY_DOWN}", Keys.DOWN);
    value = value.replace("${KEY_PAGE_UP}", Keys.PAGE_UP);
    value = value.replace("${KEY_PGUP}", Keys.PAGE_UP);
    value = value.replace("${KEY_PAGE_DOWN}", Keys.PAGE_DOWN);
    value = value.replace("${KEY_PGDN}", Keys.PAGE_DOWN);
    value = value.replace("${KEY_END}", Keys.END);
    value = value.replace("${KEY_HOME}", Keys.HOME);

    value = value.replace("${KEY_NUMPAD0}", Keys.NUMPAD0);
    value = value.replace("${KEY_N0}", Keys.NUMPAD0);
    value = value.replace("${KEY_NUMPAD1}", Keys.NUMPAD1);
    value = value.replace("${KEY_N1}", Keys.NUMPAD1);
    value = value.replace("${KEY_NUMPAD2}", Keys.NUMPAD2);
    value = value.replace("${KEY_N2}", Keys.NUMPAD2);
    value = value.replace("${KEY_NUMPAD3}", Keys.NUMPAD3);
    value = value.replace("${KEY_N3}", Keys.NUMPAD3);
    value = value.replace("${KEY_NUMPAD4}", Keys.NUMPAD4);
    value = value.replace("${KEY_N4}", Keys.NUMPAD4);
    value = value.replace("${KEY_NUMPAD5}", Keys.NUMPAD5);
    value = value.replace("${KEY_N5}", Keys.NUMPAD5);
    value = value.replace("${KEY_NUMPAD6}", Keys.NUMPAD6);
    value = value.replace("${KEY_N6}", Keys.NUMPAD6);
    value = value.replace("${KEY_NUMPAD7}", Keys.NUMPAD7);
    value = value.replace("${KEY_N7}", Keys.NUMPAD7);
    value = value.replace("${KEY_NUMPAD8}", Keys.NUMPAD8);
    value = value.replace("${KEY_N8}", Keys.NUMPAD8);
    value = value.replace("${KEY_NUMPAD9}", Keys.NUMPAD9);
    value = value.replace("${KEY_N9}", Keys.NUMPAD9);
    value = value.replace("${KEY_ADD}", Keys.ADD);
    value = value.replace("${KEY_NUM_PLUS}", Keys.ADD);
    value = value.replace("${KEY_DECIMAL}", Keys.DECIMAL);
    value = value.replace("${KEY_NUM_PERIOD}", Keys.DECIMAL);
    value = value.replace("${KEY_DIVIDE}", Keys.DIVIDE);
    value = value.replace("${KEY_NUM_DIVISION}", Keys.DIVIDE);
    value = value.replace("${KEY_MULTIPLY}", Keys.MULTIPLY);
    value = value.replace("${KEY_NUM_MULTIPLY}", Keys.MULTIPLY);
    value = value.replace("${KEY_SEPARATOR}", Keys.SEPARATOR);
    value = value.replace("${KEY_SEP}", Keys.SEPARATOR);
    value = value.replace("${KEY_SUBTRACT}", Keys.SUBTRACT);
    value = value.replace("${KEY_NUM_MINUS}", Keys.SUBTRACT);

    value = value.replace("${KEY_F1}", Keys.F1);
    value = value.replace("${KEY_F2}", Keys.F2);
    value = value.replace("${KEY_F3}", Keys.F3);
    value = value.replace("${KEY_F4}", Keys.F4);
    value = value.replace("${KEY_F5}", Keys.F5);
    value = value.replace("${KEY_F6}", Keys.F6);
    value = value.replace("${KEY_F7}", Keys.F7);
    value = value.replace("${KEY_F8}", Keys.F8);
    value = value.replace("${KEY_F9}", Keys.F9);
    value = value.replace("${KEY_F10}", Keys.F10);
    value = value.replace("${KEY_F11}", Keys.F11);
    value = value.replace("${KEY_F12}", Keys.F12);

    finder.findElement(driver, locator).sendKeys(value);

    return null;/*from www  . jav a 2  s. c om*/
}

From source file:com.thoughtworks.selenium.webdriven.commands.TypeKeys.java

License:Apache License

@Override
protected Void handleSeleneseCommand(WebDriver driver, String locator, String value) {
    alertOverride.replaceAlertMethod(driver);

    value = value.replace("\\10", Keys.ENTER);
    value = value.replace("\\13", Keys.RETURN);
    value = value.replace("\\27", Keys.ESCAPE);
    value = value.replace("\\38", Keys.ARROW_UP);
    value = value.replace("\\40", Keys.ARROW_DOWN);
    value = value.replace("\\37", Keys.ARROW_LEFT);
    value = value.replace("\\39", Keys.ARROW_RIGHT);

    finder.findElement(driver, locator).sendKeys(value);

    return null;/*from www . j  av  a2 s.co  m*/
}

From source file:com.thoughtworks.selenium.webdriven.commands.TypeKeysTest.java

License:Apache License

@Test
public void substitutesReturnAndEscapeKeys() {
    String expected = newString(Keys.ENTER, Keys.RETURN, Keys.ESCAPE);
    String input = "\\10\\13\\27";

    new TypeKeys(new AlertOverrideStub(), elementFinder).apply(null, new String[] { "foo", input });

    verify(element).sendKeys(expected);//from ww w  . j  a v a  2s . c  o  m
}