Playwright Java | Part 1 | Getting Started
Автор: Automation Step by Step
Загружено: 2025-07-10
Просмотров: 17071
00:00 Topics
05:26 System Requirements
07:39 Setup Java
18:21 Setup IDE Eclipse
28:28 Setup Maven
35:17 Create Maven Project
47:50 Add Playwright Dependency
51:34 Write and Run 1st Test
Project Repo - https://github.com/Raghav-Pal/Playwri...
Setup Java, Maven, IDE
Check system requirements - https://playwright.dev/java/docs/intr...
Step 1 - Check JAVA is installed java -version
Step 2 - If not Install Java (Windows, Mac, Linux)
Step 3 - Set env variables JAVA_HOME & PATH and check with command java -version
Step 4 - Download and setup Eclipse or any other IDE
Step 5 - Check MAVEN is installed mvn -version
Step 6 - If not Download Maven. Set MAVEN_HOME & PATH env variable. Check mvn -version
-
Create Maven project
Step 1 - Open Eclipse, Create new maven project
Group Id: com.playwright.framework
Artifact Id: playwright-automation
Version: 1.0
Click Finish
if you see "Source folder is not a Java project" error in eclipse run mvn eclipse:eclipse
Step 2 - Run command mvn clean install
-
Add Playwright dependency
Step 1 - Add playwright dependency to pom.xml
Step 2 - Save project and check if libraries are added
Step 3 - Optional - Right-click your project → Maven → Update project
-
Write and run our 1st test
Step 1 - In src/test/java create new Java Class. Name it FirstTest.java
Step 2 - Add script to run a Playwright test
Step 3 - Save and Run
import com.microsoft.playwright.*;
public class FirstTest {
public static void main(String[] args) {
try (Playwright playwright = Playwright.create()) {
Browser browser = playwright.chromium().launch(new BrowserType.LaunchOptions().setHeadless(false));
Page page = browser.newPage();
page.navigate("https://example.com");
System.out.println(page.title());
browser.close();
}
}
}
#PlaywrightJava #AutomationTesting #PlaywrightFramework
▬▬▬▬▬▬▬
Share with all who may need this
If my work has helped you, consider helping any animal near you, in any way you can
Never Stop Learning
Raghav Pal
▬▬▬▬ USEFUL LINKS ▬▬▬▬
✅ ALL TUTORIALS - https://AutomationStepByStep.com/
✅ CI | CD | DEVOPS
Jenkins Beginner - https://bit.ly/2MIn8EC
Jenkins Tips & Trick - https://bit.ly/2LRt6xC
Docker - https://bit.ly/2MInnzx
Jenkinsfile - https://bit.ly/3JSMSZ7
Kubernetes - http://bit.ly/2MJIlMK
Vagrant - https://bit.ly/3MVKdBt
Ansible - https://bit.ly/3MUsY3h
Terraform - https://bit.ly/4hMh3l6
✅ WEB TESTING
Selenium Beginners - https://bit.ly/2MGRS8K
Selenium Java Framework from Scratch - https://bit.ly/2N9xvR6
Selenium Python - https://bit.ly/2oyMp5x
Selenium 4 - https://bit.ly/3AiJOlP
Selenium Builder - https://bit.ly/2MKNtlq
Katalon Studio - https://bit.ly/2wARFdi
Robot Framework with RIDE- https://bit.ly/2Px6Ue9
Robot Framework with Eclipse - http://bit.ly/2N8DZxb
Testim - https://bit.ly/3VbnNQb
Cucumber BDD - https://bit.ly/3Cnno4z
Cypress - https://bit.ly/3PpEukM
Playwright - https://bit.ly/3iuPByJ
WebdriverIO - https://bit.ly/3IJyofA
XPath & Web Locators - https://bit.ly/3PpEvoQ
✅ API TESTING
Web Services (API) - https://bit.ly/2MGafL7
SoapUI - https://bit.ly/2MGahmd
Postman - https://bit.ly/2wz8LrW
Postman 2022 - https://bit.ly/3JWm4qX
Postman 2024 - https://bit.ly/3AE2wr6
Rest Assured - https://bit.ly/3zUdhRD
Karate API Testing - https://bit.ly/3w3H5Ku
✅ MOBILE TESTING
Appium - https://bit.ly/2ZHFSGX
Appium 2 - https://bit.ly/3UJujNJ
Mobile Playlist - https://bit.ly/2PxpeUv
✅ PERFORMANCE TESTING
JMeter Beginner - https://bit.ly/2oBbtIU
JMeter Intermediate - https://bit.ly/2oziNVB
JMeter Advanced - https://bit.ly/2Q22Y6a
JMeter Tips & Tricks - https://bit.ly/2NOfWD2
Gatling - https://bit.ly/3QrWfkV
Performance Testing - https://bit.ly/2wEXbLS
✅ SOURCE CODE MANAGEMENT
Git & GitHub - https://bit.ly/2Q1pagY
GITLAB - http://bit.ly/2kQPGyQ
✅ IDE
Eclipse - https://bit.ly/3AnRhQP
IntelliJ IDEA - https://bit.ly/3AnyDZ8
Visual Studio Code - https://bit.ly/2V15yvt
✅ PROGRAMMING
Java Beginners - https://bit.ly/2PVUcXs
Java Tips & Tricks - https://bit.ly/2CdcDnJ
Groovy - https://bit.ly/2FvWV5C
JavaScript - http://bit.ly/2KJDZ8o
TypeScript - https://bit.ly/3dvJBmz
Python - http://bit.ly/2Z4iRye
Ruby - https://bit.ly/3JRRmzf
✅ BUILD TOOLS
Maven - https://bit.ly/2NJdDRS
Gradle - http://bit.ly/30l3h1B
✅ CLOUD SERVICES
Browserstack - https://bit.ly/3w7kxZn
Saucelabs - https://bit.ly/3w7kAo1
LambdaTest - https://bit.ly/3C6TBwM
✅ PROJECT MANAGEMENT
Jira - https://bit.ly/3AFzE1L
✅ DATA FORMATS
JSON - https://bit.ly/3w450tq
XML - https://bit.ly/3PqRneH
✅ OTHERS
Virtualization on Windows - http://bit.ly/2SItIL9
Mock Interviews - https://bit.ly/3QGwwVJ
QnA Friday - https://bit.ly/2NgwGpw
Sunday Special - https://bit.ly/2wB23BO
🙌 Connect with Raghav:
Ask Raghav: https://bit.ly/2CoJGWf
Shorts Eng - https://bit.ly/3H9bifV
Shorts Hindi - https://bit.ly/3XY7XqN
➡️ Subscribe for more videos: / @raghavpal
—
Доступные форматы для скачивания:
Скачать видео mp4
-
Информация по загрузке: