Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 21, 2021 12:18 pm GMT

Cypress Commands (Get, Click, Find)

In this tutorial, we will cover some commonly used Cypress Commands such as Get, Click and Find. We will also take a look at how to find the text of a particular element.

Cypress Get & Click Command

One of the most commands that you will use in Cypress is the Get command. The get command is used to access one or more DOM elements by a selector.

Usage:
commands-get

Cypress Get Text of an Element

There are multiple ways to get the text of an element in Cypress.

1 Easiest option is via the assertion method:

commands-text

2 This option you can use if you need to manipulate the text first:

carbon-gettext

Cypress Find Command

The find command is used to get the descendant of a particular selector. For example, in the below code we are first accessing the nav menu by the id selector and then finding all the list items within the nav using the find command.

find-command

Check out the video below to see learn more about the Get, Click, and the Find commands

Subscribe to my mailing list to get access to more content like this

Follow automationbro on Twitter for the latest updates

...

I love coffees! And, if this post helped you out and you would like to support my work, you can do that by clicking on the button below and buying me a cup of coffee -

Buy me a coffee

You can also support me by liking and sharing this content.

Thanks for reading!


Original Link: https://dev.to/automationbro/cypress-commands-get-click-find-51ig

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To