How are you even managing your time @Naveen? You seriously need to give us some insights, highly inspired by you 🙏 Goes without saying, this new cucumber series is killer ❤️
Thanks @Naveen for the wonderful video. I was trying to execute test cases under a particular tag using -Dcucumber.options="--tags @tag1", but it was not working. -Dcucumber.filter.tags="@tag1" works perfectly as you mentioned this works with the latest version of cucumber. Thanks again.
It’s amazing. Thank you Naveen sir. But how we can call scenario from different feature file in order through tag. I can see, when we are calling tags from different scenario it will run according to alphabetically.. Without hooks can we do that?? Right now I am in a project where i am facing this. Please give us some suggestions for that sir. Thank you so much
Hey Naveen..Thanks a lot to make such detailed videos. I am facing an issue, the tags passed in mvn command not overwriting the tags given in cucumberoptions in test file
Hi Naveen. The series is too good. I got confused at one place, When running the UberTest with tags="not @Prod", its also running the AmazonSearchTest(Though I commented everything in that file). How to disable that? Any leads? Thanks :)
@@naveenautomationlabs Hi Naveen , Pretty plugin is not working for me ,Not sure Why i am getting the output like below . In your Video the output is in Green colour. Did i miss something @Smoke Scenario: Booking cab Sedan [90m# Feature/Uber.feature:4[0m Step 1 : Sedan [32mGiven [0m[32mUser wants to select a car type [0m[32m[1m"Sedan"[0m[32m from uber application[0m [90m# stepDefinition.UberStepDef.user_wants_to_select_a_car_type_from_uber_application(java.lang.String)[0m Step2 : SedanBangalorePune [32mWhen [0m[32mUser selects car [0m[32m[1m"Sedan"[0m[32m and pick up point [0m[32m[1m"Bangalore"[0m[32m and drop location [0m[32m[1m"Pune"[0m [90m# stepDefinition.UberStepDef.user_selects_car_and_pick_up_point_and_drop_location(java.lang.String,java.lang.String,java.lang.String)[0m
Hi Naveen, I have created all the step definition files for respective feature file but still I am getting warning that the feature does not have a matching glue code. Although the feature file is running as expected but I am not able to remove these warnings from my feature file.
Hi Naveen Could you please help me to resolve below cucumber query, How to set up dependency on cucumber test scripts like if there are 4 scripts A, B, C and D. If A passes then go to B then if B passes go to C etc If A fails don't go B and C and D.
Hi naveen in my project i have n number of feature files how do i run all feature files is there is any way to do this using tags? Please suggest thanks!
Hi Naveen am getting an error icon in my project folder but inside the code, there is no error. Some jar files which u shared in GIT is throwing an error
What if I want to run tags in my own order? Lets say I want to run @prod then @smoke then @regression When I was trying for my project it was running in alphabetical order. Can you please help me out for it n Thanks in advance 😊
How to run Multiple Feature files in Order? Say for Eg: I have Login.feature and Dashboard.feature and I wanted to run the Login Feature followed by Dashboard? How can i achieve this in runner file ? @Naveen
Hi Naveen, your videos are very helpful. Tons of thanks for it and may I know what are the perks a subscriber with membership (Rs.159/month)will get . I tried to reach you but was unable to kindly reply.
Small suggestion, Maven and Eclipse are kind of outdated these days, I mean not preferred. It will be good if your examples are based on IntelliJ and Gradle. It was just a suggestion otherwise very good work.
How are you even managing your time @Naveen? You seriously need to give us some insights, highly inspired by you 🙏 Goes without saying, this new cucumber series is killer ❤️
Managing time is a secret :) But thank you for your kind words.
@@naveenautomationlabs U r an Inspiration for all of us
Thanks @Naveen for the wonderful video. I was trying to execute test cases under a particular tag using -Dcucumber.options="--tags @tag1", but it was not working. -Dcucumber.filter.tags="@tag1" works perfectly as you mentioned this works with the latest version of cucumber. Thanks again.
Brilliant! I was searching for this feature, thank you.
I appreciate the way you taught Naveen :) especially you give some small tip that is very useful. Thank you, Naveen.
Thank you naveen it's really helpful the tags are really important topic from cucumber and you have explain all the expression clearly..
Hey @Naveen can you make a video on new tools and technologies coming to the automation industry, 5 years down the line?
Thank u sir, no words for your help 🙏...
Most welcome
It’s amazing. Thank you Naveen sir. But how we can call scenario from different feature file in order through tag. I can see, when we are calling tags from different scenario it will run according to alphabetically.. Without hooks can we do that?? Right now I am in a project where i am facing this. Please give us some suggestions for that sir. Thank you so much
Thank you Sir 🙂
thank you
Hii @Naveen , I just want to know if we have to use tags in a frame work so which dependencies we need to add
Hey Naveen..Thanks a lot to make such detailed videos. I am facing an issue, the tags passed in mvn command not overwriting the tags given in cucumberoptions in test file
can you work with tags in an outline scenario?
If the feature file contains 3 @somke scenarios but i want execute only one @smoke scenario how can we approach?
Hi Naveen. The series is too good. I got confused at one place, When running the UberTest with tags="not @Prod", its also running the AmazonSearchTest(Though I commented everything in that file). How to disable that? Any leads? Thanks :)
Give the uber feature file path in your junit runner class.
@@naveenautomationlabs Hi Naveen , Pretty plugin is not working for me ,Not sure Why i am getting the output like below . In your Video the output is in Green colour. Did i miss something @Smoke
Scenario: Booking cab Sedan [90m# Feature/Uber.feature:4[0m
Step 1 : Sedan
[32mGiven [0m[32mUser wants to select a car type [0m[32m[1m"Sedan"[0m[32m from uber application[0m [90m# stepDefinition.UberStepDef.user_wants_to_select_a_car_type_from_uber_application(java.lang.String)[0m
Step2 : SedanBangalorePune
[32mWhen [0m[32mUser selects car [0m[32m[1m"Sedan"[0m[32m and pick up point [0m[32m[1m"Bangalore"[0m[32m and drop location [0m[32m[1m"Pune"[0m [90m# stepDefinition.UberStepDef.user_selects_car_and_pick_up_point_and_drop_location(java.lang.String,java.lang.String,java.lang.String)[0m
Hi Naveen, I have created all the step definition files for respective feature file but still I am getting warning that the feature does not have a matching glue code. Although the feature file is running as expected but I am not able to remove these warnings from my feature file.
What if we are having same tag with 3 scenerios , how will the execution will be done
Hi Naveen
Could you please help me to resolve below cucumber query,
How to set up dependency on cucumber test scripts like if there are 4 scripts A, B, C and D.
If A passes then go to B then if B passes go to C etc
If A fails don't go B and C and D.
How to set priorities or sequence of feature file execution sir
Hi Naveen, How to run Multiple Tags in Cucumber IO and Kindly help me how can we rerun failed feature in Jenkins .
Kindly share if we can read the tag from file and match with the scenario tag then execute the matched one
Yes same doubt
thanks for the tutorial Sir , one question please , do we need a TestRunner Class for Every Feature, or we can use just one TestRunner Class for all
Hi DR, do you know response for your question? Kindly share if you have
Hi naveen in my project i have n number of feature files how do i run all feature files is there is any way to do this using tags? Please suggest thanks!
Hi Naveen
am getting an error icon in my project folder but inside the code, there is no error.
Some jar files which u shared in GIT is throwing an error
How do I exclude a particular tag (feature/scenario level) in the report after executing it. Is there a way to do it? Please reply
What if I want to run tags in my own order? Lets say I want to run @prod then @smoke then @regression
When I was trying for my project it was running in alphabetical order. Can you please help me out for it n Thanks in advance 😊
Sir If possible can you provide notes for every video it will be like reference for us
I gave dryRun = true and tags="@tag1 and @tag2" but I m not getting missing stepdefenition instead I m getting runs 0/1 in testrunner please help
And will match both the tags on the same scenario. So use OR.
@@naveenautomationlabs Thanks brother
Can you explain this statement
Plugin={"pretty"} ......?
If i run the case with Junit. It runs all the step definition even after , providing tags value in Java runner file. Did someone face this issue?
How to run Multiple Feature files in Order? Say for Eg: I have Login.feature and Dashboard.feature and I wanted to run the Login Feature followed by Dashboard? How can i achieve this in runner file ? @Naveen
Hi Naveen, your videos are very helpful. Tons of thanks for it and may I know what are the perks a subscriber with membership (Rs.159/month)will get . I tried to reach you but was unable to kindly reply.
Small suggestion, Maven and Eclipse are kind of outdated these days, I mean not preferred. It will be good if your examples are based on IntelliJ and Gradle. It was just a suggestion otherwise very good work.