Search⌘ K

Miscellaneous Assertions

Explore more about assertions by learning CSS, JavaScript, and image assertions with Selenium.

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) {
 
...