I have to say you are the BEST teacher I have ever learnt from! This was so detailed, but concise, and explained in such a simple way for a newbie like to me to grasp the whole concept really well. Really want to appreciate you on your teaching style and drive.
Here is the thing. I just opened this video on one screen and started setting up on the other screen. By the end of this video I was able to setup what I wanted to. Like before, I never regret watching your videos. Thanks a lot, Raghav!!
Hello Raghav, thank you for you very detailed course. As a very functional oriented QA tester, I used to be overwhelmed with all the things required/used in the automation domain and didn't know where to start. This course has proven to be very helpful as you went into every single step , showing the most basic ones - that I desperatly needed ! I scored an unexpected 18/20 ! I'll be sure to browse all your content as I'm sure to gain much skills from it. Thank you again !
i didnt know anything about automation testing or cypress but you explained it so clearly the basics that it took only one video to get into it. thanks alot.
I wander how many test frameworks do you know? It‘s always a pleasure to watch your tutorials and especially the way you explain makes everything easy to understand. I have learnt a lot from you and many thanks to you and greetings from Germany. 🥰👍🙏👏
Raghav, This video is awesome. I have an interview in JavaScript/Cypress, both of which are new to me (I'm Cucumber/Java currently). Your channel will give me the ability to learn what I need to know in a very short time and pass this interview. You are a very knowledgeable tester and a great teacher! Keep up the great work. I will take the quiz tomorrow morning. 🔥
I don't typically comment on channels, but Thank You for the gentle introduction to Cypress. It was easy to follow and I totally understand it better. Again, thank you. 😊
I was seeking for a good Cypress tutorial for months and finally could find the BEST one. Superb tutorial series. Good job and keep it up. Best wishes from Sri Lanka !! 💛💫
Very nicely explained. Thanks Raghav. Whenever I have a need to learn new automation tool, I search for your videos without any second thought. Thanks for explaining every tool in detail.
Hi Raghav, I can’t thank you enough for creating this amazing course. You know I didn’t have any experience in cypress and with your help, i was able to complete a take home test on cypress for my first interview round. They really liked my solution, i followed same approach you showed i.e. POM. Then i was even able to crack technical interview that was completely on cypress. They knew I didn’t have any experience in cypress but i was able to solve questions. After more than 1 years of job search in Canada, I got offer only because of your course. I’m so grateful to you. Thank you soooooo much for making these amazing courses, for your efforts and time you invest in providing this medium to people like us!
The way you explain the concepts is very nice, I came across your video tutorials and now I am learning one by one all the concepts. Thanks for teaching and telling us how we can automate everything for real time.
What an amazing effort Raghava. So happy that I have come across you as soon as I start browsing on cypress tutorial. Detailed and easy to follow. Thanks a lot!!! score 18/20
Thanks you Raghav for this new cypress v10+ learning video. I started to learn your new cypress master class today, completed this video, and Quiz1 got 9/10 missed the Unit test question. As usual, your video is easy to follow, full of details and always straight to the point. Thank you for all your hard work!
I scored a 19/20! :) Thank you so much for making these classes available for free, you are an exeptional teacher, very easy to follow along with and your explanations are informative without being too complex. I look forward to finishing this course and checking out some of your other stuff (I'm loking to do your postman course next). Absolute legend!
Hello Raghav, I have gone through all 4 master classes videos, and I'd like to thanks for this wonderful explanation. I always search for step by step word in TH-cam for any new automation tool learning because I can follow you instructions easily. I have feedback for cypress master class videos: 1> I think API testing is not included. 2> I ready wish, if you can concat Reporting video in the same master class :) 3> I was also wished that this master class could also have some pipeline running example, like with Jenkins, Azure , like couple of tools which are in market trends. [ Expecting too much :D ] 4> Over Expectations:D -> If one flow can be there like writing couple of test in JIZA (for example) , running the same and show the result of execution. I don't know if you have any, All I want to say Thanks You.
Thanks for the lesson! I've always been a Manual QA Tester and I was recomended to start to learn Cypress and your tutorial was very helpful to get started
1.Clicking play icon in embedded video frame is it possible in cypress 2. How you verify the text or button after you click any object 3. What is the correct replacement of waitforInvisibilityofElementLocated 4. How you manage text you enter is matching with the review screen Lets say i have add passenger in screen 1 and verify passenger in screen 2 how you manage to do thia
Certainly! Let's address each of your questions: 1. Clicking Play Icon in Embedded Video Frame in Cypress: To interact with a play icon within an embedded video frame using Cypress, follow these steps: - First, locate the video frame using a selector (e.g., `cy.get('')`). - Switch to the context using `cy.()` or `cy.frame()`. - Within the , find the play icon element (e.g., `cy.get('.play-icon')`). - Click the play icon using `cy.click()`. 2. Verifying Text or Button After Clicking an Object: After clicking an object (e.g., a button), you can verify the expected text or state change using assertions. For example: ```javascript cy.get('.my-button').click(); cy.get('.result-text').should('contain', 'Success'); ``` 3. Replacement for `waitForInvisibilityOfElementLocated`: In Cypress, there isn't a direct replacement for `waitForInvisibilityOfElementLocated` (commonly used in Selenium). However, you can achieve similar behavior using the following approach: ```javascript // Wait for an element to become invisible cy.get('.my-element').should('not.be.visible'); ``` 4. Managing Text Matching with Review Screens: When entering text and verifying it on a review screen (e.g., adding a passenger in screen 1 and verifying in screen 2), consider the following: - Screen 1 (Add Passenger): - Enter passenger details (e.g., name, age, etc.). - Store the entered details (e.g., in variables or data structures). - Screen 2 (Verify Passenger): - Retrieve the stored details. - Verify that the displayed passenger information matches the stored data. Remember to use Cypress commands like `cy.get()`, `should()`, and `expect()` to validate the expected behavior. ..
Amazing video scored 9/10 in each of my tests :) just missed one step from the video where you opened the Test Runner screen after explaining the screen shots captured step by step. please let me know how did you open the test runner screen at time 1:12:34 in the video ? Thanks for all your help and support!!
@@RaghavPal the cypress test runner screen I meant. The screen with Test Status Menu, URL previewing, Viewport Sizing etc Sorry unable to paste screen shot in the comments here 😔
@@RaghavPal its the same time stamp at 1: 12:34 just verified . the Cypress Test Runner Screen(with Test Status Menu, URL Preview, View Port Sizing etc...) , I think it is a screen shot. I am missing out from where you opened that screen shot from ? Anyways that is the only step I ma missing, rest I am good. Done with second masterclass video as well. Looking forward to the next two ones now. Totally appreciate your replies :)
Thanks Raghav sir, your way of teaching is just amazing. I am learning cypress and new to this tool but your videos are helping me to understand the basic concepts a lot. Thanks for the video.
Hello, I really like your explanations that you take everything to detail and even a beginner can understand well. after watching masterclass 1 video i get 17/20 in quiz. Thank you for this great tutorial!
I enjoyed watching this masterclass. But I have a suggestion. For beginners and particularly for who are absolutely new to automation, it would be great if you could actually explain the terminologies used in cypress, as this would help us in connecting more with what we are learning. Also, when it comes to functions it becomes difficult to understand which functions should be used, and how. Could you harp on them too...? I score 9/10 on the first quiz! Yayy! Apart from this, I believe it was a good start. Thank you @raghavpal
1 note: you suggested at around 49 minutes in to take quiz 1 prior to giving 2 of the answers (#s 4 and 5). I guessed at them both and missed one and thought maybe I hadn't been paying attention, but you give the answer at around 1:14 in the video (which is after the quiz).
Thanks to this I am subscribed your channel you save me money, because I wanted to buy a tutorial like this one on udemy, but here I have: up to date, for free and you are good teacher.
Absolutely brilliant explanation and knowledge shared. Thank you very much ! Being a fresher, should we start with Java Selenium OR Cypress ? [Job-Oriented Question]
Suyash You can start with any. Looking at the small learning curve, you may first do Cypress, however I will suggest learning Selenium will be good and important, as it will give you insights on designing and developing automation framework from scratch
Thank you very much @@RaghavPal ! This was helpful. Yes, I too felt Cypress to be more beginner-friendly, lightweight and modern, yet solid to start with. I appreciate you taking time to answer every question here on a free platform 🙏👍
Ali Best Tools for Test Automation Playwright Developed by Microsoft, supports multiple programming languages. Excellent documentation and community support Cypress User-friendly, great for beginners. Extensive tutorials available and a nice dashboard for test management Selenium The most widely recognized tool for web automation. Supports various programming languages and has a vast amount of resources available. Recommendation can start with JavaScript for automation, as many popular tools like Cypress and Playwright use it -
Hi Raghav Sir, Absolutely brilliant with your teaching technique. My score at the end of masterclass 1 is 10/10. Really appreciate your effort with making topics very clear and Thank you so much again.
Hello, I really like your explanations that you take everything to detail and even a beginner can understand well. I know the name of your channel is Automation step by step. But have you thought about doing a short series on manual testing? Because I believe that with your presentation it would be something priceless for many users. Thank you very much for your videos and your help.
Hello Raghav, I really like your explanations that you take everything to detail and even a beginner can understand well. And I scored 19 marks in the quiz.
thank you so much teacher, im now able to know very basic of Cypress, I just done the QUiZ and I got 12/20, that was not good score but im keep trying, Thanks again 🙂
@@RaghavPal Thank you so much. The session is so detailed, and you nailed out all the problems or questions thought by trainees. Just couple of questions, how can i approach you in case of questions, secondly, from the master class, can you please guide me how did you go to Cypress Test runner. (to be more precise, if you can point to 1:12 on the video, you can understand my question more well) there were instructions missed. Sorry to ask here.
Whenever you have any question, can ask in the comment section of the video, like this one. I did not find any break at 1:12, may be some other part you are referring to
Hi Friends, This is a complete beginners full course Cypress Masterclass. I hope this will help you get started with Cypress. Please share with all and let me know if you have any questions
Hi Raghava, I appreciate your Contribution to Software Testing It really inspires us to keep learning new technologies from your tutorials of yours. once again you're coming up with cypress - MasterClass which is a Game Changer automation tool for the Present and future times. Hope many testing Aspirants like me are super excited to learn Test Automation with Cypress. Thanks once again for your contribution to Software Testing Community.
It's always great to watch n learn from you Raghav..QQ What is the major difference in the following commands to open Cypress , like what difference it make npx cypress open npm run cypress
Most welcome Ravi. the 1st command i.e., npx cypress open - opens the cypress app ui and here you can select the specs, browser, etc and run npx cypress run - is to run from command line, I will cover this,
this was really useful for my current project setup :-) Thanks for this and able to score 10/10 in Cypress Quiz-1. Even I setup the similar way and it worked in my personal machine and hope to get this done at my off machine as well.
I have to say you are the BEST teacher I have ever learnt from! This was so detailed, but concise, and explained in such a simple way for a newbie like to me to grasp the whole concept really well. Really want to appreciate you on your teaching style and drive.
So happy and humbled to see your message Sehreen. Thanks and best wishes
Thank you for the best wishes. Please never stop teaching!! ❤️👏
I follow so many tutorials, some - most are painfully long and dry. Raghav you are truly the best!
Thank you so much 😀
You're such a great teacher. I'm new to the QA world but this has been one of the best tutorials I've ever took in all my professional career.
So happy and humbled to see this. Thanks Arturo
Agree, really great and calm tutorial and explanation 😊
Here is the thing. I just opened this video on one screen and started setting up on the other screen. By the end of this video I was able to setup what I wanted to. Like before, I never regret watching your videos. Thanks a lot, Raghav!!
That is awesome!
Hello Raghav, thank you for you very detailed course. As a very functional oriented QA tester, I used to be overwhelmed with all the things required/used in the automation domain and didn't know where to start. This course has proven to be very helpful as you went into every single step , showing the most basic ones - that I desperatly needed ! I scored an unexpected 18/20 ! I'll be sure to browse all your content as I'm sure to gain much skills from it. Thank you again !
Great score Soki, all the best
i didnt know anything about automation testing or cypress but you explained it so clearly the basics that it took only one video to get into it. thanks alot.
Most welcome Amrit
I wander how many test frameworks do you know? It‘s always a pleasure to watch your tutorials and especially the way you explain makes everything easy to understand. I have learnt a lot from you and many thanks to you and greetings from Germany. 🥰👍🙏👏
Most welcome
Raghav, This video is awesome. I have an interview in JavaScript/Cypress, both of which are new to me (I'm Cucumber/Java currently). Your channel will give me the ability to learn what I need to know in a very short time and pass this interview. You are a very knowledgeable tester and a great teacher! Keep up the great work. I will take the quiz tomorrow morning. 🔥
So happy and humbled to read this. You can check here if you need any help - automationstepbystep.com/
I just landed a job as Automation Engineer at Apple and this tutorial will help me a LOT kicking off with my work, thank you so much!
Glad it helped
Hi Raghav, I know you have heard this many times from many people but I cannot stop myself saying this again "You are awesome", great respect for you.
Thanks a lot Ravi. Humbled
Sir, I cannot thank you enough. May the universe bless your soul for many years.
Thanks a lot Thaynara, Humbled, Best wishes
I don't typically comment on channels, but Thank You for the gentle introduction to Cypress. It was easy to follow and I totally understand it better. Again, thank you. 😊
So happy to know this Martins. All the best for next lecture
I was seeking for a good Cypress tutorial for months and finally could find the BEST one. Superb tutorial series. Good job and keep it up. Best wishes from Sri Lanka !! 💛💫
Awesome, thank you Awanthi
Very nicely explained. Thanks Raghav. Whenever I have a need to learn new automation tool, I search for your videos without any second thought. Thanks for explaining every tool in detail.
Most welcome
I see Raghav, I click! Much love from Sri Lanka
Thanks a lot Saman
I love how you inject tips and actually show how it works.
Thanks Miro
Hi Raghav, I can’t thank you enough for creating this amazing course. You know I didn’t have any experience in cypress and with your help, i was able to complete a take home test on cypress for my first interview round. They really liked my solution, i followed same approach you showed i.e. POM. Then i was even able to crack technical interview that was completely on cypress. They knew I didn’t have any experience in cypress but i was able to solve questions.
After more than 1 years of job search in Canada, I got offer only because of your course. I’m so grateful to you. Thank you soooooo much for making these amazing courses, for your efforts and time you invest in providing this medium to people like us!
So happy to read your message Anukriti. Wish you all the best
@@RaghavPal thanks a lot! 😊
@@Aj21093 congratulations on your new job !
18out of 20.thank you so much sir for giving us confidence to attend the interviews with good knowledge. Thank you thank you thank you.❤🎉
Well done Priya
The way you explain the concepts is very nice, I came across your video tutorials and now I am learning one by one all the concepts. Thanks for teaching and telling us how we can automate everything for real time.
Glad to hear that Snehal. All the best
What an amazing effort Raghava. So happy that I have come across you as soon as I start browsing on cypress tutorial. Detailed and easy to follow. Thanks a lot!!!
score 18/20
Great to see the score Biju.. all the best for next
You’re doing a really great job by sharing your knowledge with the world. God really bless you!
Most welcome Priyanka
17/20 score after watching your video. Thanks very much for such a detailed explanation. Very useful
Excellent score Ayon.. keep learning
Thanks you Raghav for this new cypress v10+ learning video.
I started to learn your new cypress master class today, completed this video, and Quiz1 got 9/10 missed the Unit test question.
As usual, your video is easy to follow, full of details and always straight to the point. Thank you for all your hard work!
Most welcome and all the best for next lecture
Just love the way you teach Raghav. Thank you so much for everything. God bless you
Most welcome Ryan, humbled to see your message
Got 20 out of 20. First time ever in my life I got 100% marks ..LOL!!! Thank you, Raghav!
Well done Rupa
its one of the best tutorials to learn automation.... thankyou
You are welcome Shashi
Quiz 2 -- 8/10. You never went over assertions. However, you're a great teacher, especially for a very, VERY beginner.
Great score Christy.. i will take care of that
I scored a 19/20! :) Thank you so much for making these classes available for free, you are an exeptional teacher, very easy to follow along with and your explanations are informative without being too complex. I look forward to finishing this course and checking out some of your other stuff (I'm loking to do your postman course next). Absolute legend!
Thanks a lot for your kind words
After learning basics i got 10/10. thanks for the detailed information
Great Varun
Hello Raghav,
I have gone through all 4 master classes videos, and I'd like to thanks for this wonderful explanation. I always search for step by step word in TH-cam for any new automation tool learning because I can follow you instructions easily.
I have feedback for cypress master class videos:
1> I think API testing is not included.
2> I ready wish, if you can concat Reporting video in the same master class :)
3> I was also wished that this master class could also have some pipeline running example, like with Jenkins, Azure , like couple of tools which are in market trends. [ Expecting too much :D ]
4> Over Expectations:D -> If one flow can be there like writing couple of test in JIZA (for example) , running the same and show the result of execution. I don't know if you have any,
All I want to say Thanks You.
Thanks for the kind words Amit
I will try to add these
Completed quiz and got 17 out of 20.
Thanks Rahul.
Great score
Thank you so much Raghav , for this level of content . You are really blessing .
Most welcome
Thanks for the lesson! I've always been a Manual QA Tester and I was recomended to start to learn Cypress and your tutorial was very helpful to get started
Glad I could help!
Thank you so much. Very informative
Quiz 1 = 10
Quiz 2 = 9
Great, all the best Sheryl
You are amazing and genius. Please keep it up. It helps many like us a lot. Many thanks for all your efforts.
So nice of you
i scored 19/20. overall very nice learning. thank you sir.
Great, most welcome Saahan
1.Clicking play icon in embedded video frame is it possible in cypress
2. How you verify the text or button after you click any object
3. What is the correct replacement of waitforInvisibilityofElementLocated
4. How you manage text you enter is matching with the review screen
Lets say i have add passenger in screen 1 and verify passenger in screen 2 how you manage to do thia
Certainly! Let's address each of your questions:
1. Clicking Play Icon in Embedded Video Frame in Cypress:
To interact with a play icon within an embedded video frame using Cypress, follow these steps:
- First, locate the video frame using a selector (e.g., `cy.get('')`).
- Switch to the context using `cy.()` or `cy.frame()`.
- Within the , find the play icon element (e.g., `cy.get('.play-icon')`).
- Click the play icon using `cy.click()`.
2. Verifying Text or Button After Clicking an Object:
After clicking an object (e.g., a button), you can verify the expected text or state change using assertions. For example:
```javascript
cy.get('.my-button').click();
cy.get('.result-text').should('contain', 'Success');
```
3. Replacement for `waitForInvisibilityOfElementLocated`:
In Cypress, there isn't a direct replacement for `waitForInvisibilityOfElementLocated` (commonly used in Selenium). However, you can achieve similar behavior using the following approach:
```javascript
// Wait for an element to become invisible
cy.get('.my-element').should('not.be.visible');
```
4. Managing Text Matching with Review Screens:
When entering text and verifying it on a review screen (e.g., adding a passenger in screen 1 and verifying in screen 2), consider the following:
- Screen 1 (Add Passenger):
- Enter passenger details (e.g., name, age, etc.).
- Store the entered details (e.g., in variables or data structures).
- Screen 2 (Verify Passenger):
- Retrieve the stored details.
- Verify that the displayed passenger information matches the stored data.
Remember to use Cypress commands like `cy.get()`, `should()`, and `expect()` to validate the expected behavior.
..
Thank you so much Raghav for all the courses that you are offering. Its really helpful.
Most welcome Shaila
Amazing video
scored 9/10 in each of my tests :)
just missed one step from the video where you opened the Test Runner screen after explaining the screen shots captured step by step. please let me know how did you open the test runner screen at time 1:12:34 in the video ?
Thanks for all your help and support!!
Most welcome Mayuri
I did not get you.. at the time step you mentioned i am simply explaining with the screenshot
@@RaghavPal the cypress test runner screen I meant.
The screen with Test Status Menu, URL previewing,
Viewport Sizing etc
Sorry unable to paste screen shot in the comments here 😔
ok, can you check and let me know the exact timestamp from the video
@@RaghavPal its the same time stamp at 1: 12:34 just verified . the Cypress Test Runner Screen(with Test Status Menu, URL Preview, View Port Sizing etc...) , I think it is a screen shot. I am missing out from where you opened that screen shot from ?
Anyways that is the only step I ma missing, rest I am good. Done with second masterclass video as well. Looking forward to the next two ones now.
Totally appreciate your replies :)
Thankyou so much for the excellent lessons. I have got quiz score 15/20
Great score, Keep learning Sandhya
Thanks Raghav sir, your way of teaching is just amazing. I am learning cypress and new to this tool but your videos are helping me to understand the basic concepts a lot. Thanks for the video.
You are most welcome Anwesh
Hello, I really like your explanations that you take everything to detail and even a beginner can understand well. after watching masterclass 1 video i get 17/20 in quiz.
Thank you for this great tutorial!
You're very welcome!= Darshan
brother, I got 9 out of 10 question correct yo are an amazing teacher. thank you!
Excellent Mohanish
i got 10/10 in quiz 2. Thanks for your awesome lessons.
Excellent Anukriti
I enjoyed watching this masterclass. But I have a suggestion. For beginners and particularly for who are absolutely new to automation, it would be great if you could actually explain the terminologies used in cypress, as this would help us in connecting more with what we are learning.
Also, when it comes to functions it becomes difficult to understand which functions should be used, and how. Could you harp on them too...?
I score 9/10 on the first quiz! Yayy!
Apart from this, I believe it was a good start. Thank you @raghavpal
Sure Shivanie
thanks for the feedback
So clear and thorough, yet stays on track and accomplishes the goal. Thanks so much for this great tutorial!
1 note: you suggested at around 49 minutes in to take quiz 1 prior to giving 2 of the answers (#s 4 and 5). I guessed at them both and missed one and thought maybe I hadn't been paying attention, but you give the answer at around 1:14 in the video (which is after the quiz).
Ok, I will take care of this Laura, thanks for letting me know
Thanks to this I am subscribed your channel you save me money, because I wanted to buy a tutorial like this one on udemy, but here I have: up to date, for free and you are good teacher.
Glad I could help!
Thank you Raghav for this lesson. My score is 18/20
Well done
Total points
17/20 , Great video realy a have got a benificial understanding of the right way..thanks alot Mr Raghav.
Most welcome
Absolutely brilliant explanation and knowledge shared. Thank you very much !
Being a fresher, should we start with Java Selenium OR Cypress ? [Job-Oriented Question]
Suyash
You can start with any. Looking at the small learning curve, you may first do Cypress, however I will suggest learning Selenium will be good and important, as it will give you insights on designing and developing automation framework from scratch
Thank you very much @@RaghavPal ! This was helpful. Yes, I too felt Cypress to be more beginner-friendly, lightweight and modern, yet solid to start with. I appreciate you taking time to answer every question here on a free platform 🙏👍
Thanku so much sir this was my first class of automation testing learning so easy way too explains.... Thanku❤🎉 sir
.
Most welcome Vipul
Well Explained Sir, Completed Master Class 1, Waiting for 2nd one. Thank you for alsways helping.
Great 👍
Thank you so much Sir, I hope you always happy and always healty
Always welcome 🙏
Great training, I would like to start learning about test automation. What is the best tool to help me to secure a job?
Ali
Best Tools for Test Automation
Playwright
Developed by Microsoft, supports multiple programming languages.
Excellent documentation and community support
Cypress
User-friendly, great for beginners.
Extensive tutorials available and a nice dashboard for test management
Selenium
The most widely recognized tool for web automation.
Supports various programming languages and has a vast amount of resources available.
Recommendation
can start with JavaScript for automation, as many popular tools like Cypress and Playwright use it
-
Excellent tutorial on cypress!!! You are doing a great support for Testing community.
Thanks for you support!!!🙏🤝
Most welcome Virendra
you are great!! such a great and knowledgeable Tutor and giving free . Thankyou so much
You're very welcome Jyoti
Hi Raghav Sir, Absolutely brilliant with your teaching technique. My score at the end of masterclass 1 is 10/10. Really appreciate your effort with making topics very clear and Thank you so much again.
Excellent Srinivas
Superb course, worthy watching... Thank you.
Glad it was helpful Raji
Hello, I really like your explanations that you take everything to detail and even a beginner can understand well. I know the name of your channel is Automation step by step. But have you thought about doing a short series on manual testing? Because I believe that with your presentation it would be something priceless for many users. Thank you very much for your videos and your help.
Most welcome
Good introductory tutorial to cypress, i got 10 out of 10 🎉
Great score Billy.. keep learning
Hello Raghav,
I really like your explanations that you take everything to detail and even a beginner can understand well. And I scored 19 marks in the quiz.
Great score, keep learning Maya
Thank you Raghav sir for this cypress tutorials 🤝💐
Most welcome Suraj
Thank you this helped me to set everything up and to start working already with Cypresssssss :)
Happy to know this
thank you so much teacher, im now able to know very basic of Cypress, I just done the QUiZ and I got 12/20, that was not good score but im keep trying, Thanks again 🙂
Great, all the best Lily
Thank you Raghava, i started just now, it looks great.
Most welcome Durga
@@RaghavPal Thank you so much. The session is so detailed, and you nailed out all the problems or questions thought by trainees. Just couple of questions, how can i approach you in case of questions, secondly, from the master class, can you please guide me how did you go to Cypress Test runner. (to be more precise, if you can point to 1:12 on the video, you can understand my question more well) there were instructions missed. Sorry to ask here.
Whenever you have any question, can ask in the comment section of the video, like this one.
I did not find any break at 1:12, may be some other part you are referring to
I scored a 18/20! :) Thank you so much
Great, all the best for next Akash
Hello, you are very Good Teacher. In this Quiz i got 18 marks out of 20. Thank You.
Great score
Dear Raghav sir,
Thanks for giving a good course.
i scored 18/20 in the quiz 01
Well done Srinivas
Sir Thanks for updated version. many greetings from Lahore, Pakistan
Most welcome
You are the best tutor
Thanks a lot Shahzil, humbled
Well explained ! My quiz score: 15/20.
Great Sarib
Your videos are so amazing. I got 10/10 in the quiz.
Excellent Abijeet
What a great teacher you are. iscored 10/10 in the Quiz 1 :)
Excellent
Thanks for the detailed session and i have got 9/10
Great 👍 Prasad
Hi Friends, This is a complete beginners full course Cypress Masterclass. I hope this will help you get started with Cypress. Please share with all and let me know if you have any questions
Hi Raghava, I appreciate your Contribution to Software Testing It really inspires us to keep learning new technologies from your tutorials of yours. once again you're coming up with cypress - MasterClass which is a Game Changer automation tool for the Present and future times. Hope many testing Aspirants like me are super excited to learn Test Automation with Cypress. Thanks once again for your contribution to Software Testing Community.
Please show us latest cypress version as lot of things have been changed in the new version. Regards.
Shaz
Hello i need help for karate framework how i can connect with you
can send me your queries
Hi Raghav, I'm waiting for your cypress-component testing tutorial. Any ideas to post that?
You are the number one bro
Thanks for the kind words Farouk
Youre The best in what you do For Real
Thanks a lot
Thanks :)
Most Welcome
Man, I love your videos, you are a great teacher!
Glad you like them!
Thank you. I found many video about cypress testing api but just have older version. Waiting next video..
uploaded
My Score 16 , sir after take this masterclass , thanks
Well done Faisal
so much plesure to see ur video sir and so much connecting every single dot.
Most welcome
Thanks Raghav
Most welcome
Great video - starts at the beginning and good pace. Learned alot & felt it was time well invested
Thanks Philip
Hi @Raghav, I enjoyed the video and made 18/20 in my quiz
Great score Roli, all the best for next, do let me know the score
Excellent teaching method
Thanks and welcome
Great course, very thorough!
Thanks Juanita
Thank you for this very clear and easy to follow tutorial. I will definitely check more of your videos :)
Glad it was helpful Łukasz
It was very effective for learning, Thanks a lot sir
You are most welcome
It's always great to watch n learn from you Raghav..QQ What is the major difference in the following commands to open Cypress , like what difference it make
npx cypress open
npm run cypress
Most welcome Ravi. the 1st command i.e.,
npx cypress open - opens the cypress app ui and here you can select the specs, browser, etc and run
npx cypress run - is to run from command line, I will cover this,
Thanks for the demo. Do you have lectures on Detox automation as well?
Not yet Shefali
My quiz result is 8/10 so not bad for the first time in Cypress :) Thx for this first part is very usefull. J eat something and time to part 2 :)
Well done
amazing explanation. thank you so much and keep doing amazing work
You are most welcome
great video, easy to understand, thanks a lot :)
Most welcome Anna
Thank you so much for excellent lessons and this series is one of the best.👏
Thanks Shira
Thank you ,your videos were amazing
You are welcome Sevilay
Great tutorial, thanks for sharing
You’re welcome Ritul
this was really useful for my current project setup :-) Thanks for this and able to score 10/10 in Cypress Quiz-1. Even I setup the similar way and it worked in my personal machine and hope to get this done at my off machine as well.
all the best Nirmalan
Excellent tutorial on cypress. Will complete the full playlist. Subscribed :)
All the best Raghav
@@RaghavPal raghav to the power of 2 😅
Great work sir
Thanks