Selenium Methods - denhoefel/EcommerceSeleniumProject GitHub Wiki

WebElements

Find and Click elements

👁️ Find Element (1)

WebElement inputsLink = driver.findElement(By.linkText("Inputs"));

Simple find element in the screen

👀 Find Elements (Many)

List<WebElement> links = driver.findElements(By.tagName("a")); System.out.println(links.size());

Check the number of elements in a list

🆗🆗 Assertions

import static org.testng.Assert.*;
assertEquals("received text", "expected"); //compare with the exact same text
assertTrue("received text".contains("expected"); //compare with the exact same text

Advanced Elements

Use the Actions class from Selenium

⌨️ Keyboard Keys to be used in sendKeys

Use the Keys class from Selenium to send the special keys from the keyboard image

🗔 JS Popup Alert

To click on "ok" to confirm the alert

driver.switchTo().alert().accept();

To click on "Cancel" to dismiss the alert

driver.switchTo().alert().dismiss();

To write some text in the JS pop up

driver.switchTo().alert().sendkeys(text);

To get the pop up text

driver.switchTo().alert().getText();

📂 File Upload

To upload a file you need to find the input field and use the sendKeys method with the location of the file.

public void uploadFile (String absolutePathOfFile){
   driver.findElement(inputField).sendKeys(absolutePathOfFile);
clickUploadButton();
    }

🖱️ Mouse Actions

To Right-click with the mouse

    public void rightClick(){
        Actions action = new Actions(driver);
        action.contextClick(driver.findElement(hotSpot)).perform();
    }

Click Elements

inputsLink.click();

🖼️ Iframes

image

To interact with IFrames, you need to change the context

Going to the IFrameArea

   private void switchToIframeArea(){
        driver.switchTo().frame(nameIframe);

    }

Return to the Dom

private void switchToMainArea(){
        driver.switchTo().parentFrame();
    }
⚠️ **GitHub.com Fallback** ⚠️