diff --git a/app/commands/misc.html b/app/commands/misc.html index b3881da88..0248fdf30 100644 --- a/app/commands/misc.html +++ b/app/commands/misc.html @@ -70,6 +70,43 @@

Misc

+
+

.end()

+

To end the command chain, use the .end() command.

+
// cy.end is useful when you want to end a chain of commands
+// and force Cypress to re-query from the root element
+cy.get('.misc-table').within(() => {
+  // ends the current chain and yields null
+  cy.contains('Cheryl').click().end()
+
+  // queries the entire table again
+  cy.contains('Charles').click()
+})
+
+
+
+ + + + + + + + + + + + + + + + + +
Table
User: Cheryl
User: Charles
User: Darryl
+
+
+ +

cy.exec()

To execute a system command, use the cy.exec() command.