notExists function

bool notExists(
  1. dynamic item
)

A matcher that checks if a PageLoaderElement/PageObject does not exist.

Implementation

bool notExists(item) => !exists(item);