Skip to main content
Cypress App

not

Filter DOM element(s) from a set of DOM elements.

info

Opposite of .filter()

info

The querying behavior of this command matches exactly how .not() works in jQuery.

Syntax​

.not(selector)
.not(selector, options)

Usage​

Correct Usage

cy.get('input').not('.required') // Yield all inputs without class '.required'

Incorrect Usage

cy.not('.icon') // Errors, cannot be chained off 'cy'
cy.clock().not() // Errors, 'clock' does not yield DOM elements

Arguments​

selector (String selector)

A selector used to remove matching DOM elements.

options (Object)

Pass in an options object to change the default behavior of .not().

OptionDefaultDescription
logtrueDisplays the command in the Command log
timeoutdefaultCommandTimeoutTime to wait for .not() to resolve before timing out

Yields Learn about subject management​

  • .not() yields the new DOM element(s) it found.
  • .not() is a query, and it is safe to chain further commands.

Examples​

Selector​

Yield the elements that do not have class active​

<ul>
<li>Home</li>
<li class="active">About</li>
<li>Services</li>
<li>Pricing</li>
<li>Contact</li>
</ul>
cy.get('ul>li').not('.active').should('have.length', 4) // true

Rules​

Requirements Learn about chaining commands​

  • .not() requires being chained off a command that yields DOM element(s).

Assertions Learn about assertions​

  • .not() will automatically retry until the element(s) exist in the DOM.
  • .not() will automatically retry until all chained assertions have passed.

Timeouts Learn about timeouts​

  • .not() can time out waiting for the element(s) to exist in the DOM.
  • .not() can time out waiting for assertions you've added to pass.

Command Log​

Find all buttons that are not of type submit

cy.get('form').find('button').not('[type="submit"]')

The commands above will display in the Command Log as:

Command Log not

When clicking on not within the command log, the console outputs the following:

Console Log not

See also​