-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error occurs only with cy.step (cypress open and run) #11
Comments
Also happening to me. Although it worked fine before adding cypress-allure to my dev dependencies |
I faced same issue! Need brief example as I believe that adding examples that showcase the plugin's capabilities with a variety of URLs and devices would greatly improve its usability and help users better understand how to incorporate it into their testing workflows. |
I wasn’t able to replicate this issue. a reproducible repository would help a lot here. the thing I find odd in tall the information you provided is that it points to I think this might be some conflict between the plugin and some other plugin (?) but really hard to say. investigating. any help appreciated |
I tried replicating with allure report plugin, no luck there either |
"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
The text was updated successfully, but these errors were encountered: