Assertions

Validating text and field types

Create a basic automation script that completes the test requirements listed below

Test Requirements

Verify the following elements

If needed click the plus sign for help

Verify that the form title is "Form Example"

Assert.assertEquals(“Form Example”, “//*[@id=”wpforms-form-82″]/div[1]/div”);

Verify the Email field is of the email type

Assert.assertTrue(driver.findElement(By.xpath(“//input[@type=\”email\”]”)).isDisplayed());

Verify that the second dropdown option contains the text "Second Choice"

driver.findElement(By.xpath(“//*[@id=\”wpforms-82-field_3\”]”)).click();
Assert.assertEquals(driver.findElement(By.xpath(“//*[@id=\”wpforms-82-field_3\”]/option[2]”)).getText(), “Second Choice”);

Verify that the Dropdown field is a dropdown with 3 options

Select select = new Select(driver.findElement(By.xpath(“//*[@id=\”wpforms-82-field_3\”]”)));
List<WebElement> dropdown = select.getOptions();
Assert.assertTrue(dropdown.size()==3);

Verify that there are 3 checkbox fields

List<WebElement> checkbox = driver.findElements(By.cssSelector(“input[type=’checkbox'”));
Assert.assertTrue(checkbox.size()==3);

Verify there are 3 radio fields

List<WebElement> radio = driver.findElements(By.cssSelector(“input[type=’radio’]”));
Assert.assertTrue(radio.size()==3);

Verify that the button contains the text "Submit"

Assert.assertEquals(driver.findElement(By.xpath(“//*[@id=\”wpforms-submit-82\”]”)).getText(), “Submit”);

Close the WebDriver

driver.close();

Form Example