Chào các bạn đã đến với chủ để tiếp theo của mình. Hôm nay, mình sẽ hướng dẫn cài đặt và cấu hình IntelliJ. Trong chủ đề selenium này, mình sẽ sử dụng tool IntelliJ để code automation. Các bạn hãy làm theo những step sau để cài đặt nhé.
Bước 1: Download IntelliJ
- Open link: https://www.jetbrains.com/idea/download/
- Ở mục Community Edition ấn nút download:
- Sau khi download về xong, cứ việc double click vào file .exe, click next cho tới khi nào cài đặt xong
Bước 2: Mở Intellij lên, chọn New Project
Bước 3: Input project name
Bước 4: Ở phần Build system, select Maven and click Create button
Bước 5: Open file pom.xml
Bước 6: Input đoạn config sau vào file pom.xml
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.11.0</version>
</dependency>
- Sau khi input xong, click Load Maven Changes to download thư viện selenium về máy local
- Bạn có thể vào đây: https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java để lấy version mới nhất về nhé.
Chúc các bạn thành công.