Key Points
...
Reference_description_with_linked_URLs_____________________________________ | Notes_________________________________________________________________ |
---|
|
|
|
|
https://searchsoftwarequality.techtarget.com/tip/A-Selenium-IDE-vs-WebDriver-comparison Selenium IDE vs. WebDriver comparison pdf | Selenium IDE vs. WebDriver comparison pdf ** |
|
|
https://www.guru99.com/top-6-api-testing-tool.html | API Testing Tools list |
https://www.postman.com/pricing/ | Postman - Enterprise API Test tool with many features, easy to learn, use free for limited usage, 3 developers |
https://curl.se/docs/ https://curl.se/docs/manual.html | Curl CLI for HTTP requests |
https://github.com/httpie/httpie | Httpie - Modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more. |
https://www.selenium.dev/downloads/ https://www.selenium.dev/documentation/ https://www.selenium.dev/documentation/overview/ https://www.selenium.dev/selenium-ide/docs/en/introduction/getting-started https://www.selenium.dev/selenium-ide/docs/en/introduction/command-line-runner | Selenium Web Driver browser client records Web sessions for test scripts, playback supports key OS, Languages add Appium for Mobile tests |
https://spockframework.org/ https://www.baeldung.com/groovy-spock | Spock Spock is a testing and specification framework for Java and Groovy applications |
https://www.gebish.org/ https://www.softwaretestinghelp.com/geb-tutorial-browser-automation-testing-using-geb-tool/ https://medium.com/automationschool/geb-spock-the-best-of-breed-solution-for-all-your-ui-automation-needs-94f01c998f18 Concept - Geb and Spock Tests | Geb - a web testing automation framework. It is build as a wrapper over Selenium WebDriver which makes it ideal for automated browser testing Geb Tutorial – Browser Automation Testing Using Geb Tool is a good tutorial ** |
https://cucumber.io/ https://cucumber.io/docs/guides/10-minute-tutorial/ | Cucumber |
stackshare ompare of cucumber and spock http://ytheohar.blogspot.com/2015/07/bdd-with-cucumber-vs-spock.html https://www.donaldmcintosh.net/blog/goodbye-cucumber-hello-spock https://www.slideshare.net/wakaleo/cucumber-and-spock-primer cucumber-and-spock-primer-slides-170424130138.pdf | Compare Cucumber and Spock BDD Tests frameworks This BDD comparison shows Spock syntax is much simpler to read, code
cucumber and spock primer is on slideshare |
https://cucumber.io/docs/installation/ | cucumber installation |
https://medium.com/@mlvandijk/getting-started-with-cucumber-in-java-a-10-minute-tutorial-586652d2c82 | 10 minute cucumber tutorial |
https://medium.com/@prathore28647/cucumber-vs-bdd-behavior-driven-development-a5dec8d64bcd | cucumber vs BDD concepts article |
https://medium.com/@mlvandijk/getting-started-with-cucumber-in-java-a-10-minute-tutorial-586652d2c82 | getting started with cucumber in Java |
cucumber in groovy |
|
https://www.slideshare.net/rapaul/cucumber-on-the-jvm-with-groovy groovy-cucumber-slides-onthejvmwithgroovy-rapaul-110324134849-phpapp02.pdf link | Cucumber concepts on groovy slides - 2011 |
https://javadoc.io/doc/io.cucumber/cucumber-groovy/latest/io/cucumber/groovy/package-summary.html | groovy cucumber javadoc |
https://blog.jetbrains.com/idea/2012/11/cucumber-for-java-and-groovy-in-intellij-idea-12/ | cucumber for java and groovy in intellij tutorial 2012 |
https://github.com/cucumber/cucumber-jvm-groovy | cucumber jvm groovy - 2020 updated |
Behavior Driven Development with Cucumber, Groovy and Grails video |
|
https://cucumber.io/docs/installation/groovy/ | install cucumber for groovy |
|
|
https://www.eclemma.org/index.html https://www.eclemma.org/userdoc/coverageview.html https://www.eclemma.org/resources.html | Jacoco - Java code coverage tool |
|
|
...
Learn more about Rest-Assured
Download HttpMaster
Karate is a new API testing framework base on cucumber library. Karate DSL allows testers to write meaningful tests for web service using a domain-specific language.
...
Download link: https://github.com/intuit/karate
https://github.com/karatelabs/karate
https://www.softwaretestinghelp.com/api-testing-with-karate-framework/
karate beginner tutorial video
karate setup and install video
Can create automated, BDD tests with Karate using a DSL ( vs a language )
Karate framework follows the Cucumber style of writing the program which follows the BDD approach. The syntax is easy to understand by non-programmers. And this framework is the only API testing tool that has combined API Automation and performance testing into a single standalone tool.
It provides the users with the ability to execute the test cases in Parallel and perform the JSON & XML checks.
With this information, certain key points can be deduced to further understand the Karate tool in detail:
- Karate is a BDD testing framework instead of a TDD.
- It is designed to be easy for non-programmers. This feature is a game-changer as it allows for more use and access by many people regardless of their technical background or capacity.
- It makes use of the Cucumber feature file and the Gherkins language to write the test which is very easy to understand.
Image Added
TestNG - NextGeneration - more flexible than JUnit
https://www.guru99.com/all-about-testng-and-selenium.html
testng-2022-guru99.com-TestNG Tutorial What is Annotations amp Framework in Selenium.pdf file
https://testng.org/doc/documentation-main.html
TestNG is an automation testing framework in which NG stands for “Next Generation”. TestNG is inspired by JUnit which uses the annotations (@). TestNG overcomes the disadvantages of JUnit and is designed to make end-to-end testing easy.
Using TestNG, you can generate a proper report, and you can easily come to know how many test cases are passed, failed, and skipped. You can execute the failed test cases separately.
12) Rest Console
HTTP client and Request visualizer and constructor API testing tool. It helps developers to build, debug and test RESTful APIS.
...