"cypress": "12.2.0"
"cypress-plugin-steps": "^1.1.0"



Oops, it looks like you are trying to call a child command before running a parent command.
You wrote code that looks like this:
cy.step("Access admin page")
A child command must be chained after a parent because it operates on a previous subject.
For example - if we were issuing the child command click...
cy
.get('button') // parent command must come first
.click() // then child command comes second
Test steps were:
--- Start ---
##########################################################
New Test
Version cypress: 12.7.0

"cypress": "12.2.0""cypress-plugin-steps": "^1.1.0"Oops, it looks like you are trying to call a child command before running a parent command.
You wrote code that looks like this:
cy.step("Access admin page")
A child command must be chained after a parent because it operates on a previous subject.
For example - if we were issuing the child command click...
cy
.get('button') // parent command must come first
.click() // then child command comes second
Test steps were:
--- Start ---
##########################################################
New Test
Version cypress: 12.7.0