"Software Testing Bootcamp" is a community of people interested in software testing. We record the weekly webinars that we organize and publish them on Youtube. For more information -> https://testingbootcamp.com/
Youtube Webinar Video:
Requirements:
- Java JDK8 Installation
https://www.oracle.com/tr/java/technologies/javase-downloads.html
How to run Junit test on Chrome browser from terminal?
cd $PROJECT_PATH/Selenium-Java-Junit
mvn clean install site -Dbrowser.type=chrome
Requirements:
- Python3 Installation
https://www.python.org/downloads/
-
Required Python Libraries Installation on Terminal/CMD
-
pip install robotframework
-
pip install --upgrade robotframework-pageobjectlibrary
-
pip install --upgrade robotframework-seleniumlibrary
-
pip install webdrivermanager
-
webdrivermanager firefox chrome --linkpath /usr/local/bin
-
pip install -r requirements.txt
-
How to run RobotFramework test from terminal?
cd $PROJECT_PATH/robotframework-python3/tests
robot DemoApp.robot
Requirements:
-
NodeJS Installation
-
Required NodeJS Libraries Installation on Terminal/CMD
- npm install cypress
-
Installing and opening Cypress
How to run Cypress test from terminal?
-
Open Cypress application
-
cd /your/project/path/Cypress-js-mocha
-
./node_modules/.bin/cypress open
-
-
Running locally
-
cd /your/project/path/Cypress-js-mocha
-
npx cypress run --browser chrome --headed
-
Resources:
https://www.selenium.dev/documentation/
https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html
https://docs.cypress.io/guides/overview/why-cypress#In-a-nutshell




