Miscellaneous Assertions
Explore more about assertions by learning CSS, JavaScript, and image assertions with Selenium.
We'll cover the following...
We'll cover the following...
Assert if an image is present
We can assert if an image is present by:
assert(driver.findElement(By.id("next_go")).isDisplayed());
Assert element location and width
We can assert the width and location of an element by:
driver.findElement(By.id("next_go")).getSize().then(function(the_size) {
...