Your videos on Cypress are super helpful and I learn something new every time I watch them. Can you please do a video on how to test email using Cypress using Gmail test library.
@joanmedia3 жыл бұрын
Hi Sachin! Thanks for your comment and I am really happy to hear that. I will add it to my to-do list :)
@VictorUngur2 жыл бұрын
Thank you for this demo! Excellent explanation!
@joanmedia2 жыл бұрын
Thanks Victor!
@omanpios886 ай бұрын
Just what I was looking for! Thanks!
@rajatt952 жыл бұрын
Very well explained. Appreciable.
@joanmedia2 жыл бұрын
Thank you Rajat!
@FYPNLP3 жыл бұрын
Nearly 1000 subscribers. Congratulations 🎉🎉🎉
@joanmedia3 жыл бұрын
Thanks for the comment. 🎈🎈👌 Really happy about that 🙏
@cemalatayeter47262 жыл бұрын
Really, you are very good a teacher. I'm grateful :)
@joanmedia2 жыл бұрын
Thanks for your feedback :D happy to hear you liked it :D
@poornapragnyas87033 жыл бұрын
You've made my work simpler
@joanmedia3 жыл бұрын
haha right? Thanks for the comment!
@tonia2039 Жыл бұрын
This is exactly what I need. Thanks!
@joanmedia Жыл бұрын
So happy to hear that :D
@k.sharathchandrakummari1720 Жыл бұрын
You did a great job
@ChetanNaik-kc9cv2 жыл бұрын
can you please make a video on how to use grep tag in cypress cucumber feature files?
@luckyyadav8904 Жыл бұрын
Very helpful bro 👍👍👍 Keep it up 🙂
@user-he8qc4mr4i2 жыл бұрын
Thx for sharing! Was not aware of this library. BTW what other libraries are out there that provides same or better features?
@joanmedia2 жыл бұрын
I need to do make videos about it, but I think you can see some plugins at: glebbahmutov.com/blog/ He has a YT channel too, and develop constantly interesting plugins!
@HariGowtham_R2 жыл бұрын
Hi @JoanMedia please post a video with Cypress-grep with cucumber preprocesser
@manikantan24572 жыл бұрын
Hey Joan , How can we run the Tags specific in BDD Cucumber feature with Cypress 10 + TypeScript.?
@joanmedia2 жыл бұрын
Hey Mani Check this repo: github.com/JoanEsquivel/cypress-cucumber-boilerplate There you have an example :D I'll try to make a video soon about it.
@jonathanizquierdo87Ай бұрын
Hi! cucumber-preprocessor, that is the cucumber library for BDD for cypress have tag control native, just with that library you will be able to use gherkin, and call by command, wich tags you want to run. The way to tag in gherkin is "@tagname" - The command to run is : npx cypress run --env TAGS='@tagname' Happy coding Happy Testing!!
@benjaminzarabiyan2191 Жыл бұрын
Hi for some reason, i can't setup it up in Cypress 10 it has maybe a different configuration?
@ayodejijoseph68642 жыл бұрын
Great video, really love it, am trying to add tag to my test using { tags: '@sanity '} in my .ts but I get an error which I cannot resolve, don't know if you've come across this error and how you resolved it ?? ```Argument of type '{ tags: string; }' is not assignable to parameter of type 'TestConfigOverrides'. Object literal may only specify known properties, and 'tags' does not exist in type 'TestConfigOverrides'.```
@hibabarakat38732 жыл бұрын
Hey There, I tried to run the exact same steps, but i. can see that all tests are skipped, Can you please help me with this ?
@rezolution43408 ай бұрын
is this still relevant for cypress 13X ?
@joanmedia8 ай бұрын
I think so! Recently I used it
@rezolution43408 ай бұрын
@@joanmedia thanks, I got it to work. But I can't use --tag the same way. i.e ... --tag = "regresion"
@jonathanizquierdo87Ай бұрын
Hi!! there is a way with cypress-grep to run just 1 test case and not all the test inside the "describe"?? because i understand that is more simple to run 4 spec files with 1 tag, but i can do the same calling every file with --spec "list of path to spec files", i just wants to run 1 test from every spec file.
@jjdenny2 жыл бұрын
Does it affect the cypress report?
@joanmedia2 жыл бұрын
When I tested it, the report just marked them as skipped.
@jjdenny2 жыл бұрын
@@joanmedia Thanks for the reply. In my case, there is no html report generated, just the summary from the terminal
@joanmedia2 жыл бұрын
@@jjdenny great. The same then haha
@princebautista2 жыл бұрын
Does this work with Cypress v10?
@jonathanizquierdo87Ай бұрын
In my experience with cypress 13 i have to add at the end of the execution command ,grepFilterSpecs=true Like this : npx cypress run --env grep=@smoke,grepFilterSpecs=true and that make it work.
@princebautistaАй бұрын
@@jonathanizquierdo87 yeah i was able to find a way to make tags still work on cypress with cucumber after v10. although I don't remember how i did it since we started using playwright afterwards XD
@sumanthpai61007 ай бұрын
Cant you add tags to specific tests rather than the entire test suite i.e describe?, We may want to run some tests in a test suite for different purposes like regression , smoke , sanity etc