--- id: intro title: "Installation" --- Playwright was created specifically to accommodate the needs of end-to-end testing. Playwright supports all modern rendering engines including Chromium, WebKit, and Firefox. Test on Windows, Linux, and macOS, locally or on CI, headless or headed with native mobile emulation. Playwright is distributed as a set of [Maven](https://maven.apache.org/what-is-maven.html) modules. The easiest way to use it is to add one dependency to your project's `pom.xml` as described below. If you're not familiar with Maven please refer to its [documentation](https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html). ## Usage Get started by installing Playwright and running the example file to see it in action. ```java // src/main/java/org/example/App.java package org.example; import com.microsoft.playwright.*; public class App { public static void main(String[] args) { try (Playwright playwright = Playwright.create()) { Browser browser = playwright.chromium().launch(); Page page = browser.newPage(); page.navigate("http://playwright.dev"); System.out.println(page.title()); } } } ``` ```xml 4.0.0 org.example examples 0.1-SNAPSHOT Playwright Client Examples UTF-8 com.microsoft.playwright playwright 1.32.0 org.apache.maven.plugins maven-compiler-plugin 3.10.1 1.8 1.8 ``` With the Example.java and pom.xml above, compile and execute your new program as follows: ```bash mvn compile exec:java -D exec.mainClass="org.example.App" ``` Running it downloads the Playwright package and installs browser binaries for Chromium, Firefox and WebKit. To modify this behavior see [installation parameters](./browsers.md#installing-browsers). ## First script In our first script, we will navigate to `whatsmyuseragent.org` and take a screenshot in WebKit. ```java package org.example; import com.microsoft.playwright.*; import java.nio.file.Paths; public class App { public static void main(String[] args) { try (Playwright playwright = Playwright.create()) { Browser browser = playwright.webkit().launch(); Page page = browser.newPage(); page.navigate("http://whatsmyuseragent.org/"); page.screenshot(new Page.ScreenshotOptions().setPath(Paths.get("example.png"))); } } } ``` By default, Playwright runs the browsers in headless mode. To see the browser UI, pass the `headless=false` flag while launching the browser. You can also use [`option: slowMo`] to slow down execution. Learn more in the debugging tools [section](./debug.md). ```java playwright.firefox().launch(new BrowserType.LaunchOptions().setHeadless(false).setSlowMo(50)); ``` ## Running the Example script ```bash mvn compile exec:java -D exec.mainClass="org.example.App" ``` By default browsers launched with Playwright run headless, meaning no browser UI will open up when running the script. To change that you can pass `new BrowserType.LaunchOptions().setHeadless(false)` when launching the browser. ## What's next - [Write tests using web first assertions, page fixtures and locators](./writing-tests.md) - [Run single test, multiple tests, headed mode](./running-tests.md) - [Generate tests with Codegen](./codegen.md) - [See a trace of your tests](./trace-viewer-intro.md)