NỘI DUNG BÀI HỌC
Tài nguyên cài đặt môi trường cho khoá học Cucumber TestNG
Cài đặt IntelliJ IDEA bản Community Edition
https://www.jetbrains.com/idea/download/#section=windows
Cài đặt thư viện theo Maven Project
Tất cả chúng ta cứ update theo phiên bản mới nhất nhé.
Selenium
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.9.1</version>
</dependency>
WebDriverManager
<!-- https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager -->
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>5.3.3</version>
</dependency>
TestNG
Khi copy trên MVN thì bỏ cái dòng <scope>test</scope> ra
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.8.0</version>
</dependency>
Cucumber Java
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-java -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-java</artifactId>
<version>7.12.0</version>
</dependency>
Cucumber TestNG
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-testng -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-testng</artifactId>
<version>7.12.0</version>
</dependency>
Cucumber Gherkin
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-gherkin -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-gherkin</artifactId>
<version>7.12.0</version>
</dependency>
Gherkin
<!-- https://mvnrepository.com/artifact/io.cucumber/gherkin -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>gherkin</artifactId>
<version>26.2.0</version>
</dependency>
Trên là các thư viện bắt buộc có. Ngoài ra chúng ta còn add thêm các thư viện bổ trợ khác trong bài An sẽ cập nhật sau nhé.
⭐️Website rèn luyện code auto test
Demo QA (component web): https://demoqa.com/
The Internet App (component web): https://the-internet.herokuapp.com/
Lambdatest (component web): https://www.lambdatest.com/selenium-playground/
POS: https://saleserpdemo.bdtask-demo.com/v10_demo/login
eCommerce CMS: https://demo.activeitzone.com/ecommerce/login
Orange HRM: https://opensource-demo.orangehrmlive.com/web/index.php/auth/login
HRM GO: https://demo.workdo.io/hrmgo/login
Perfex CRM (Anh Tester): https://crm.anhtester.com/admin/authentication
RISE CRM (Anh Tester): https://rise.anhtester.com/signin
eCommerce CMS (Anh Tester): https://cms.anhtester.com/login
eCommerce CMS (Anh Tester): https://ecommerce.anhtester.com/login
ERP và HRM (Anh Tester): https://hrm.anhtester.com/erp/login
Anh Tester sẽ cập nhật thêm cái hay hay cho các bạn !!
