From 6890e9edf6c6e1784db1037f96427087ebbd5892 Mon Sep 17 00:00:00 2001 From: "mohammadfaisalkhatri@gmail.com" Date: Thu, 6 Jun 2024 20:16:09 +0530 Subject: [PATCH 1/5] updated dependency and plugin versions in pom.xml --- pom.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index e996621..961c8bf 100644 --- a/pom.xml +++ b/pom.xml @@ -13,17 +13,17 @@ UTF-8 - 4.18.1 - 7.9.0 - 5.7.0 - 2.15.1 + 4.21.0 + 7.10.2 + 5.8.0 + 2.16.1 2.23.1 2.23.1 20240303 - 4.18.1 + 4.21.0 1.18.32 - 2.1.0 - 3.4.1 + 2.2.2 + 3.5.0 3.13.0 3.2.5 17 @@ -99,7 +99,7 @@ org.seleniumhq.selenium - selenium-devtools-v120 + selenium-devtools-v125 ${seleniumdevtools.version} From 3ff2084123351923c53c25f49533ec71d069660d Mon Sep 17 00:00:00 2001 From: "mohammadfaisalkhatri@gmail.com" Date: Thu, 6 Jun 2024 20:19:29 +0530 Subject: [PATCH 2/5] added youtube video links in readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dfc92b0..521f4c7 100644 --- a/README.md +++ b/README.md @@ -50,13 +50,15 @@ ## :movie_camera: Tutorial Videos +[![Watch the video](https://img.youtube.com/vi/JYosKUL0aZU/hqdefault.jpg)]( https://youtu.be/JYosKUL0aZU?si=qjHlpkHUxwZtITED) +[![Watch the video](https://img.youtube.com/vi/1Bw2JHoOg5U/hqdefault.jpg)]( https://youtu.be/1Bw2JHoOg5U?si=mdbGd7XAfbJ3VNbO) [![Watch the video](https://img.youtube.com/vi/bhZX7apMqR8/hqdefault.jpg)]( https://www.youtube.com/live/bhZX7apMqR8?si=4n0u5YiMuz5vTiHd) [![Watch the video](https://img.youtube.com/vi/uHLYoJmZxWc/hqdefault.jpg)](https://youtu.be/uHLYoJmZxWc?si=3nevAn0Z3QZycdG8) [![Watch the video](https://img.youtube.com/vi/_hlXjVTa-jo/hqdefault.jpg)](https://youtu.be/_hlXjVTa-jo?si=PfOfU7ihb8eEgduh) +[![Watch the video](https://img.youtube.com/vi/wSxnk3XkG58/hqdefault.jpg)](https://youtu.be/wSxnk3XkG58) [![Watch the video](https://img.youtube.com/vi/sVBgpz1z9Ts/hqdefault.jpg)]( https://youtu.be/sVBgpz1z9Ts?si=azE1_vquOwT9jFT1d) - ## End-to-End Tests for OWASP-Juice-Shop - End-to-End tests for Juice Shop Website are running on `http://localhost:3000` inside the container in GitHub actions. From 61aa2b187e6a6244aeb145070801e759f27f6908 Mon Sep 17 00:00:00 2001 From: "mohammadfaisalkhatri@gmail.com" Date: Thu, 6 Jun 2024 20:25:34 +0530 Subject: [PATCH 3/5] added recommended proxies section in readme --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 521f4c7..3c33475 100644 --- a/README.md +++ b/README.md @@ -207,6 +207,15 @@ mail me @ `mohammadfaisalkhatri@gmail.com` or ping me on [LinkedIn](https://www. - [LambdaTest Blogs](https://www.lambdatest.com/blog/author/mfaisalkhatri/) - [My Website](https://mfaisalkhatri.github.io) +## :computer: Recommended Proxies + +There are cases when proxies may be required to run the tests, this may happen when the software teams are working in isolation at different places. +Residential proxies help in keeping the user’s information safe and help in hiding the real location of the user +It acts as a middleman between the device and the internet and keep the users safe from being tracked. + +[NodeMaven](https://go.nodemaven.com/automation_proxy) provides high quality proxies with industry-first filtering, super sticky sessions and best customer support. +Try out [NodeMaven](https://go.nodemaven.com/automation_proxy) now(_Use F86 at checkout to get extra 2GB of proxy_) + ## :bulb: Cloud platform supporter ### Big thanks to **LambdaTest** for their support to the project with their open source license: From f4500fcc722b209232b69742d5ffffb31c2173dd Mon Sep 17 00:00:00 2001 From: "mohammadfaisalkhatri@gmail.com" Date: Thu, 6 Jun 2024 20:30:14 +0530 Subject: [PATCH 4/5] updated devtools test as dependency version updated --- .../io/github/mfaisalkhatri/drivers/DevToolsManager.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/io/github/mfaisalkhatri/drivers/DevToolsManager.java b/src/main/java/io/github/mfaisalkhatri/drivers/DevToolsManager.java index acbde8c..97d3400 100644 --- a/src/main/java/io/github/mfaisalkhatri/drivers/DevToolsManager.java +++ b/src/main/java/io/github/mfaisalkhatri/drivers/DevToolsManager.java @@ -1,7 +1,5 @@ package io.github.mfaisalkhatri.drivers; -import java.util.Objects; - import io.github.bonigarcia.wdm.WebDriverManager; import lombok.Builder; import org.apache.logging.log4j.LogManager; @@ -9,7 +7,9 @@ import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.chrome.ChromeOptions; import org.openqa.selenium.devtools.DevTools; -import org.openqa.selenium.devtools.v120.log.Log; +import org.openqa.selenium.devtools.v125.log.Log; + +import java.util.Objects; /** * Created By Faisal Khatri on 21-03-2022 From 01d69de7123e0e8500f01b2752f379c7ddf99ff3 Mon Sep 17 00:00:00 2001 From: "mohammadfaisalkhatri@gmail.com" Date: Fri, 7 Jun 2024 01:16:16 +0530 Subject: [PATCH 5/5] disabled iframe test as web page does not allow to type inside the frame and shows alert message related to tiny mce --- test-suite/testng-theinternet.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-suite/testng-theinternet.xml b/test-suite/testng-theinternet.xml index de0e728..463a28c 100644 --- a/test-suite/testng-theinternet.xml +++ b/test-suite/testng-theinternet.xml @@ -113,7 +113,7 @@ - +