Selenium Cucumber Java BDD Framework Class 12: CommandLine

Опубликовано: 26 Май 2022
на канале: Testing Tutorialspoint
302
6

How to run from CommandLine:
----------------------------

1 - What is Command Line execution
2 - Why to use Command Line
3 - When to use Command Line
4 - How to use Command Line

What is Command Line execution?

Running your tests or features from command line or terminal without using the IDE or GUI


Why to use Command Line?

No dependency on IDE or GUI
Useful in integrations with other processes
Continuous Integration, Delivery and Deployment
Easier & Faster
Consumes less memory

When to use Command Line?

Whenever you need to run the tests faster without opening IDE
Whenever you need to do integrations with other processes
CI, CD, DevOps
Whenever using CI tools like Jenkins
Whenever you need any batch or scheduled execution
Whenever you are done with your test creation and setup

How to use Command Line?

Step 1 - Right-click on the project and select Run As - Maven test
Step 2 - Check the console logs
Step 3 - Troubleshoot and correct the errors
Step 4 - Open CMD prompt
Step 5 - Check MAVEN is installed mvn -version
Step 6 - CD to the project location
Step 7 - Run command mvn test

By default mvn test will run the files with naming syntax
**/Test*.java
**/*Test.java
**/*TestCase.java

Overriding Cucumber Options from Command Line
mvn test
mvn test -Dcucumber.options=”Your Options”
mvn test -Dcucumber.options=”--help”
Run specific feature : mvn test -Dcucumber.options="src/test/resources/login.feature"
Run specific scenario : mvn test -Dcucumber.options="feature file path:5"
Run with Tags : mvn test -Dcucumber.options="--tags @Smoke"
Reports : mvn test -Dcucumber.options=”--plugin html:target/HtmlReports”

Running with multiple parameters
Can run with multiple parameters from command line
mvn test -Dcucumber.options="----" -Dcucumber.options="----"

example
mvn test
-Dcucumber.options="src/test/resources/login.feature" -Dcucumber.options="--tags @Smoke"


На этой странице сайта вы можете посмотреть видео онлайн Selenium Cucumber Java BDD Framework Class 12: CommandLine длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Testing Tutorialspoint 26 Май 2022, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 302 раз и оно понравилось 6 зрителям. Приятного просмотра!