From ae54a7da554b9328c16d6bcb17db93c5e57342a6 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Tue, 20 Sep 2022 16:23:54 -0700 Subject: [PATCH] docs: update gradle snippet --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 899b8543..8ff1b91a 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,9 @@ To run Playwright simply add following dependency to your Maven project: To run Playwright using Gradle add following dependency to your build.gradle file: -```json lines +```gradle dependencies { -implementation group: 'com.microsoft.playwright', name: 'playwright', version: '1.25.0' + implementation group: 'com.microsoft.playwright', name: 'playwright', version: '1.26.0' } ```