How to use UnreachableBrowserException class of org.openqa.selenium.remote package

Best Selenium code snippet using org.openqa.selenium.remote.UnreachableBrowserException

Source:DriverManager.java Github

copy

Full Screen

...11import org.openqa.selenium.chrome.ChromeOptions;12import org.openqa.selenium.remote.CapabilityType;13import org.openqa.selenium.remote.DesiredCapabilities;14import org.openqa.selenium.remote.RemoteWebDriver;15import org.openqa.selenium.remote.UnreachableBrowserException;16import org.slf4j.Logger;17import org.slf4j.LoggerFactory;18import java.io.FileNotFoundException;19import java.io.IOException;20import java.net.URL;21import java.util.HashMap;22import java.util.Map;23public class DriverManager implements DriverSource {24 private static final Logger logger = LoggerFactory.getLogger(DriverManager.class);25 private static final String binarySetupMessage = "Downloading and setting up chrome WebDriver binary from https://chromedriver.storage.googleapis.com:443";26 public WebDriver newDriver() {27 RemoteWebDriver driver = null;28 DesiredCapabilities dc = new DesiredCapabilities();29 //Do not change this. If you do change it, don't commit your change. Revert. Until we do this via environment variables or something similar.30 final String ACCESS_KEY = "XXXXX";31 EnvironmentVariables environmentVariables = SystemEnvironmentVariables.createEnvironmentVariables();32 boolean remote = Boolean.parseBoolean(environmentVariables.getProperty("remote"));33 if (remote) {34 logger.info("##### Running web tests on experitest (remote) ####");35 String accessKey = System.getenv("experitest_ACCESS_KEY");36 String serverAddress = environmentVariables.getProperty("experitest.server");37 if (accessKey == null) {38 accessKey = environmentVariables.getProperty("experitest.key");39 }40 String environment = System.getProperty("environment");41 final ChromeOptions chromeOptions = new ChromeOptions();42 Map<String, Object> prefs = new HashMap<String, Object>();43 prefs.put("googlegeolocationaccess.enabled", false);44 prefs.put("profile.default_content_setting_values.geolocation", 2); // 1:allow 2:block45 prefs.put("profile.default_content_setting_values.notifications", 1);46 prefs.put("profile.managed_default_content_settings", 1);47 chromeOptions.setExperimentalOption("prefs", prefs);48 chromeOptions.setAcceptInsecureCerts(true);49 chromeOptions.addArguments(50 "--ignore-certificate-errors",51 "--disable-download-notification",52 "--no-sandbox",53 "--disable-site-isolation-trials",54 "--enable-strict-powerful-feature-restrictions",55 "--disable-geolocation",56 "--disable-gpu");57 ChromeDriverService service;58 try {59 setupChromeDriverBinary();60 service = new ChromeDriverService.Builder()61 .usingAnyFreePort()62 .build();63 service.start();64 dc.setCapability(CapabilityType.BROWSER_VERSION, "94");65 dc.setCapability(ChromeOptions.CAPABILITY, chromeOptions);66 dc.setCapability("testName", "SpecSavers: End to End");67 dc.setCapability("accessKey", ACCESS_KEY);68 driver = new RemoteWebDriver(new URL("XXXXXXXXXX/wd/hub"), dc);69 } catch (Exception e) {70 logger.error("Error due to " + e.getMessage());71 throw new UnreachableBrowserException(e.getMessage());72 }73 return driver;74 } else {75 try {76 // File file = setupChromeDriverBinary();77 setupChromeDriverBinary();78 final ChromeOptions chromeOptions = new ChromeOptions();79 Map<String, Object> prefs = new HashMap<String, Object>();80 prefs.put("googlegeolocationaccess.enabled", false);81 prefs.put("profile.default_content_setting_values.geolocation", 2); // 1:allow 2:block82 prefs.put("profile.default_content_setting_values.notifications", 1);83 prefs.put("profile.managed_default_content_settings", 1);84 chromeOptions.setExperimentalOption("prefs", prefs);85 chromeOptions.setAcceptInsecureCerts(true);86 chromeOptions.addArguments(87 "--ignore-certificate-errors",88 "--disable-download-notification",89 "--no-sandbox",90 "--disable-site-isolation-trials",91 "--enable-strict-powerful-feature-restrictions",92 "--disable-geolocation",93 "--disable-gpu");94 logger.info("Is this a ci_build? {}", SystemUtils.IS_OS_LINUX);95 if (SystemUtils.IS_OS_LINUX) {96 chromeOptions.addArguments(97 "--headless",98 "--allow-running-insecure-content",99 "--disable-web-security");100 } else if (SystemUtils.IS_OS_MAC || SystemUtils.IS_OS_WINDOWS) {101 chromeOptions.addArguments(102 "--incognito",103 "--start-fullscreen");104 }105 ChromeDriverService service;106 service = new ChromeDriverService.Builder()107 .usingAnyFreePort()108 .build();109 service.start();110 dc.setCapability(CapabilityType.BROWSER_VERSION, "93");111 dc.setCapability(ChromeOptions.CAPABILITY, chromeOptions);112 driver = new RemoteWebDriver(service.getUrl(), dc);113 return driver;114 } catch (UnreachableBrowserException | FileNotFoundException e) {115 logger.error("Error due to " + e.getMessage());116 throw new UnreachableBrowserException(e.getMessage());117 } catch (IOException e) {118 e.printStackTrace();119 }120 }121 return driver;122 }123 public boolean takesScreenshots() {124 return true;125 }126 private void setupChromeDriverBinary() {127 logger.info(binarySetupMessage);128 try {129 if (SystemUtils.IS_OS_MAC || SystemUtils.IS_OS_WINDOWS || SystemUtils.IS_OS_LINUX) {130 logger.info("driver binary setup started...");...

Full Screen

Full Screen

Source:Stepdefs.java Github

copy

Full Screen

...17import org.openqa.selenium.WebElement;18import org.openqa.selenium.remote.Augmenter;19import org.openqa.selenium.remote.DesiredCapabilities;20import org.openqa.selenium.remote.RemoteWebDriver;21import org.openqa.selenium.remote.UnreachableBrowserException;22import org.openqa.selenium.support.ui.ExpectedCondition;23import org.openqa.selenium.support.ui.Wait;24import org.openqa.selenium.support.ui.WebDriverWait;25import org.junit.Assert;26import org.openqa.selenium.chrome.*;27class IsItFriday {28 static String isItFriday(String today) {29 return "Friday".equals(today) ? "TGIF" : "Nope";30 }31}32public class Stepdefs {33 private String today;34 private String actualAnswer;35 private boolean isDriverReady = false;36 private WebDriver driver = null;37 private String website = "";38 private String hubHost = "localhost";39 private String hubPort = "4444";40 @Given("^I use Chrome browser$")41 public void I_use_Chrome_browser() throws Throwable {42 ChromeOptions options = new ChromeOptions();43 options.addArguments("--headless");44 // DesiredCapabilities capabilities = new DesiredCapabilities();45 DesiredCapabilities capabilities = DesiredCapabilities.chrome();46 capabilities.setBrowserName("chrome");47 capabilities.setCapability(ChromeOptions.CAPABILITY, options);48 // options.merge(capabilities);49 // ChromeDriver driver = new ChromeDriver(options);50 initDriver(capabilities);51 }52 @Given("today is {string}")53 public void today_is(String today) {54 System.out.println(today);55 this.today = today;56 }57 @When("I ask whether it's Friday yet")58 public void i_ask_whether_it_s_Friday_yet() {59 this.actualAnswer = IsItFriday.isItFriday(today);60 }61 @When("^I visit \"([^\"]*)\"$")62 public void I_visit(String website) throws Throwable {63 this.website = website;64 driver.navigate().to(new URL(website));65 // driver.manage().window().maximize();66 }67 @Then("I should be told {string}")68 public void i_should_be_told(String expectedAnswer) {69 assertEquals(expectedAnswer, actualAnswer);70 }71 @Then("^I should see \"([^\"]*)\"$")72 public void I_should_see(String text) throws Throwable {73 Assert.assertTrue("<[" + text + "]> is not present on current page!", isTextPresent(text));74 }75 private boolean isTextPresent(String text) throws InterruptedException {76 return isTextPresent(text, 50);77 }78 private boolean isTextPresent(String text, int retries) throws InterruptedException {79 boolean ready = false;80 while(!ready && retries-- > 0) {81 Thread.sleep(100);82 ready = driver.getPageSource().contains(text);83 }84 return ready;85 }86 private void initDriver(DesiredCapabilities capabilities) {87 if(this.isDriverReady) {88 return;89 }90 try {91 this.driver = new RemoteWebDriver(new URL("http://" + this.hubHost + ":" + this.hubPort + "/wd/hub"), capabilities);92 this.driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);93 } catch(UnreachableBrowserException e) {94 Assert.fail("UnreachableBrowserException: " + e.getMessage());95 } catch(MalformedURLException e) {96 Assert.fail("MalformedURLException: http://" + this.hubHost + ":" + this.hubPort + "/wd/hub");97 } catch(WebDriverException e) {98 Assert.fail("WebDriverException: " + e.getMessage());99 }100 this.isDriverReady = true;101 }102}...

Full Screen

Full Screen

Source:CustomWebDriver.java Github

copy

Full Screen

...9import org.openqa.selenium.WebDriver;10import org.openqa.selenium.chrome.ChromeDriverService;11import org.openqa.selenium.firefox.GeckoDriverService;12import org.openqa.selenium.remote.RemoteWebDriver;13import org.openqa.selenium.remote.UnreachableBrowserException;14import org.openqa.selenium.remote.service.DriverService;15import org.openqa.selenium.safari.SafariDriverService;16import java.io.IOException;17import java.net.MalformedURLException;18import java.net.URL;19import static com.gbk.hybrid.qa.CustomProperties.*;20import static io.github.bonigarcia.wdm.DriverManagerType.CHROME;21import static io.github.bonigarcia.wdm.DriverManagerType.FIREFOX;22import static io.github.bonigarcia.wdm.WebDriverManager.getInstance;23import static java.lang.String.format;24import static org.openqa.selenium.remote.CapabilityType.BROWSER_NAME;25public class CustomWebDriver implements DriverSource {26 protected static Scenario scenario;27 private WebDriver driver;28 private DriverService driverService;29 private String browser = getBrowser();30 @Before31 public void setUp(Scenario scenario){32 CustomWebDriver.scenario = scenario;33 }34 @After35 public void tearDown(){36 if(driver != null){37 driver.quit();38 }39 }40 @Override41 public WebDriver newDriver(){42 MutableCapabilities capabilities = new MutableCapabilities();43 setCapabilites(capabilities);44 setDriverService(browser);45 startDriverService();46 driver = new RemoteWebDriver(driverService.getUrl(),capabilities);47 return driver;48 }49 @Override50 public boolean takesScreenshots() { return true; }51 private void setCapabilites(@NotNull MutableCapabilities capabilities){52 capabilities.setCapability(BROWSER_NAME, browser);53 }54 /**55 * Method to get the drivers from the cloud instead of local install56 * @param browser57 */58 private void setDriverService(String browser) {59 switch (browser.toLowerCase()) {60 case "chrome":61 setDriverManager(CHROME,"https://chromedriver.storage.googleapis.com/");62 driverService = ChromeDriverService.createDefaultService();63 break;64 case "firefox":65 setDriverManager(FIREFOX, "https://api.github.com/repos/mozilla/geckodriver/releases/");66 driverService = GeckoDriverService.createDefaultService();67 break;68 case "safari":69 driverService = SafariDriverService.createDefaultService();70 break;71 default:72 throw new IllegalArgumentException(format("%s is unsupported, kindly try chrome or firefox.", browser));73 }74 }75 private void startDriverService() {76 try {77 driverService.start();78 } catch (IOException exc) {79 String message = format("Unable to start driver service, due to %s", exc.getMessage());80 //LOG.error(message);81 throw new UnreachableBrowserException(message);82 }83 }84 private void setDriverManager(DriverManagerType driverManagerType, String downloadUrl){85 try{86 getInstance(driverManagerType)87 .driverRepositoryUrl(new URL(downloadUrl))88 .version(getVersion())89 .avoidOutputTree()90 .setup();91 }92 catch (MalformedURLException exc){93 throw new UnreachableBrowserException(format("%s is not supported. Please try a browser like chrome or firefox.",browser));94 }95 }96}...

Full Screen

Full Screen

Source:WebDriverFactory.java Github

copy

Full Screen

...10import org.openqa.selenium.ie.InternetExplorerDriver;11import org.openqa.selenium.phantomjs.PhantomJSDriver;12import org.openqa.selenium.remote.DesiredCapabilities;13import org.openqa.selenium.remote.RemoteWebDriver;14import org.openqa.selenium.remote.UnreachableBrowserException;1516public class WebDriverFactory {17 18 public static final String REMOTE = "remote";19 public static final String REMOTE_URL = "remoteUrl";20 21 public static WebDriver createWebDriver(DesiredCapabilities capabilities) {22 if(capabilities.getCapability(REMOTE) != null && 23 (Boolean) capabilities.getCapability(REMOTE) == true) {24 return createRemoteWebDriver(capabilities);25 } else {26 return createLocalWebDriver(capabilities);27 }28 29 }3031 private static WebDriver createRemoteWebDriver(DesiredCapabilities capabilities) {32 String rawUrl = (String) capabilities.getCapability(REMOTE_URL);33 URL remoteUrl = null;34 try {35 remoteUrl = new URL(rawUrl);36 return new RemoteWebDriver(remoteUrl, capabilities);37 } catch (MalformedURLException e) {38 throw new RuntimeException(e);39 } catch (UnreachableBrowserException ube) {40 System.out.println("Trying to connect to remote WebDriver at: " + remoteUrl);41 ube.printStackTrace();42 throw ube;43 }44 45 }4647 private static WebDriver createLocalWebDriver(DesiredCapabilities capabilities) {48 String desiredBrowser = (String) capabilities.getBrowserName();4950 if("chrome".equals(desiredBrowser)) {51 System.setProperty("webdriver.chrome.driver", "drivers/chrome/chromedriver29.exe");52 System.out.println("--- NOTE ---");53 System.out.println("Property webdriver.chrome.driver was set in 'createLocalWebDriver(DesiredCapabilities capabilities)'"); ...

Full Screen

Full Screen

Source:ChromeDriverWrapper.java Github

copy

Full Screen

...5import org.openqa.selenium.chrome.ChromeDriver;6import org.openqa.selenium.chrome.ChromeDriverService;7import org.openqa.selenium.chrome.ChromeOptions;8import org.openqa.selenium.remote.DesiredCapabilities;9import org.openqa.selenium.remote.UnreachableBrowserException;10import lombok.AllArgsConstructor;11import lombok.extern.slf4j.Slf4j;12import org.jetbrains.annotations.NotNull;13import org.openqa.selenium.UnexpectedAlertBehaviour;14import org.openqa.selenium.remote.CapabilityType;15@Slf4j16@AllArgsConstructor17public class ChromeDriverWrapper implements WrappedWebDriver {18 @NotNull19 private static ChromeOptions getChromeOptions() {20 final ChromeOptions chromeOptions = new ChromeOptions();21 chromeOptions.setAcceptInsecureCerts(true);22 chromeOptions.addArguments(23 "--disable-download-notification",24 "--incognito"25 );26 chromeOptions.setCapability(CapabilityType.UNEXPECTED_ALERT_BEHAVIOUR, UnexpectedAlertBehaviour.IGNORE);27 if (SystemUtils.IS_OS_LINUX) {28 chromeOptions.addArguments(29 "--headless"30 );31 DesiredCapabilities capabilities = new DesiredCapabilities();32 capabilities.acceptInsecureCerts();33 } else if (SystemUtils.IS_OS_MAC || SystemUtils.IS_OS_WINDOWS) {34 chromeOptions.addArguments(35 "--start-maximized"36 );37 }38 return chromeOptions;39 }40 @Override41 public WebDriver newDriver() {42 WebDriverManager.chromedriver().setup();43 final ChromeOptions chromeOptions = getChromeOptions();44 try {45 return new ChromeDriver(ChromeDriverService.createDefaultService(), chromeOptions);46 } catch (UnreachableBrowserException e) {47 throw new UnreachableBrowserException(e.getMessage());48 }49 }50 @Override51 public boolean takesScreenshots() {52 return true;53 }54}...

Full Screen

Full Screen

Source:Browser.java Github

copy

Full Screen

...7import org.openqa.selenium.chrome.ChromeDriver;8import org.openqa.selenium.chrome.ChromeOptions;9import org.openqa.selenium.remote.DesiredCapabilities;10import org.openqa.selenium.remote.RemoteWebDriver;11import org.openqa.selenium.remote.UnreachableBrowserException;12import org.openqa.selenium.support.ui.WebDriverWait;13public class Browser {14 public static WebDriver driver;15 public static WebDriverWait wait;16 public static WebDriver getCurrentDriver() {17 if (driver == null) {18 WebDriverManager.chromedriver().setup();19 driver = new ChromeDriver();20 wait = new WebDriverWait(driver, 30);21 maximizeBrowser();22 setPageLoadTimeout();23 }24 return driver;25 }26 public static void maximizeBrowser() {27 driver.manage().window().maximize();28 }29 public static void setPageLoadTimeout() {30 driver.manage().timeouts().pageLoadTimeout(20, TimeUnit.SECONDS);31 }32 public static void loadPage(String url) {33 getCurrentDriver().get(url);34 }35 public static String getUrl() {36 return getCurrentDriver().getCurrentUrl();37 }38 public static void close() {39 try {40 getCurrentDriver().quit();41 driver = null;42 } catch (UnreachableBrowserException e) {43 }44 }45}

Full Screen

Full Screen

Source:FirefoxDriverWrapper.java Github

copy

Full Screen

...7import org.openqa.selenium.firefox.FirefoxDriver;8import org.openqa.selenium.firefox.FirefoxOptions;9import org.openqa.selenium.firefox.GeckoDriverService;10import org.openqa.selenium.remote.CapabilityType;11import org.openqa.selenium.remote.UnreachableBrowserException;12@Slf4j13public class FirefoxDriverWrapper implements WrappedWebDriver {14 @NotNull15 private static FirefoxOptions getFirefoxOptions() {16 FirefoxOptions firefoxOptions = new FirefoxOptions();17 firefoxOptions.addArguments(18 "--private"19 );20 firefoxOptions.setCapability(CapabilityType.UNEXPECTED_ALERT_BEHAVIOUR, UnexpectedAlertBehaviour.IGNORE);21 return firefoxOptions;22 }23 @Override24 public WebDriver newDriver() {25 WebDriverManager.firefoxdriver().setup();26 final FirefoxOptions firefoxOptions = getFirefoxOptions();27 try {28 return new FirefoxDriver(GeckoDriverService.createDefaultService(), firefoxOptions);29 } catch (UnreachableBrowserException e) {30 throw new UnreachableBrowserException(e.getMessage());31 }32 }33 @Override34 public boolean takesScreenshots() {35 return true;36 }37}

Full Screen

Full Screen

Source:DriverHelper.java Github

copy

Full Screen

...3import org.openqa.selenium.*;4import org.openqa.selenium.chrome.ChromeDriver;5import org.openqa.selenium.remote.DesiredCapabilities;6import org.openqa.selenium.remote.RemoteWebDriver;7import org.openqa.selenium.remote.UnreachableBrowserException;8import java.net.MalformedURLException;9import java.net.URL;10import java.util.concurrent.TimeUnit;11public class DriverHelper {12 private static WebDriver driver;13 public static WebDriver getDriver(){14 try {15 DesiredCapabilities capability = DesiredCapabilities.firefox();16 driver = new RemoteWebDriver(capability);17 driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);18 driver.manage().timeouts().pageLoadTimeout(30, TimeUnit.SECONDS);19 return driver;20 } catch (UnreachableBrowserException e) {21 WebDriverManager.chromedriver().setup();22 ChromeDriver driver;23 driver = new ChromeDriver();24 driver.manage().window().maximize();25 Config.BASE_URL = "http://localhost:8080";26 return driver;27 }28 }29}...

Full Screen

Full Screen

UnreachableBrowserException

Using AI Code Generation

copy

Full Screen

1import org.openqa.selenium.remote.UnreachableBrowserException;2import org.openqa.selenium.remote.DesiredCapabilities;3import org.openqa.selenium.remote.RemoteWebDriver;4import org.openqa.selenium.remote.DesiredCapabilities;5import java.net.URL;6import java.io.IOException;7import java.lang.Thread;8import java.util.concurrent.TimeUnit;9import org.testng.Assert;10import org.testng.annotations.Test;11import org.testng.annotations.BeforeMethod;12import org.testng.annotations.AfterMethod;13import org.testng.annotations.BeforeClass;14import org.testng.annotations.AfterClass;15import org.testng.annotations.BeforeTest;16import org.testng.annotations.AfterTest;17import org.testng.annotations.BeforeSuite;18import org.testng.annotations.AfterSuite;19public class TestNGTest {20 RemoteWebDriver driver;21 DesiredCapabilities capabilities;22 URL url;23 UnreachableBrowserException unreachableBrowserException;24 IOException ioException;25 Thread thread;26 TimeUnit timeUnit;27 Assert assert;28 Test test;29 BeforeMethod beforeMethod;

Full Screen

Full Screen

UnreachableBrowserException

Using AI Code Generation

copy

Full Screen

1package com.packt.webdriver.chapter1;2import org.openqa.selenium.remote.UnreachableBrowserException;3import org.openqa.selenium.*;4import org.openqa.selenium.firefox.*;5public class UnreachableBrowserExceptionExample {6 public static void main(String... args){7 WebDriver driver = new FirefoxDriver();8 try{9 System.out.println("Page title is: " + driver.getTitle());10 driver.quit();11 }catch(UnreachableBrowserException e){12 System.out.println("The browser is unreachable");13 }14 }15}16package com.packt.webdriver.chapter1;17import org.openqa.selenium.remote.UnreachableBrowserException;18import org.openqa.selenium.*;19import org.openqa.selenium.firefox.*;20public class UnreachableBrowserExceptionExample {21 public static void main(String... args){22 WebDriver driver = new FirefoxDriver();23 try{24 System.out.println("Page title is: " + driver.getTitle());25 driver.quit();26 }catch(WebDriverException e){27 System.out.println("The browser is unreachable");28 }29 }30}

Full Screen

Full Screen

Selenium 4 Tutorial:

LambdaTest’s Selenium 4 tutorial is covering every aspects of Selenium 4 testing with examples and best practices. Here you will learn basics, such as how to upgrade from Selenium 3 to Selenium 4, to some advanced concepts, such as Relative locators and Selenium Grid 4 for Distributed testing. Also will learn new features of Selenium 4, such as capturing screenshots of specific elements, opening a new tab or window on the browser, and new protocol adoptions.

Chapters:

  1. Upgrading From Selenium 3 To Selenium 4?: In this chapter, learn in detail how to update Selenium 3 to Selenium 4 for Java binding. Also, learn how to upgrade while using different build tools such as Maven or Gradle and get comprehensive guidance for upgrading Selenium.

  2. What’s New In Selenium 4 & What’s Being Deprecated? : Get all information about new implementations in Selenium 4, such as W3S protocol adaption, Optimized Selenium Grid, and Enhanced Selenium IDE. Also, learn what is deprecated for Selenium 4, such as DesiredCapabilites and FindsBy methods, etc.

  3. Selenium 4 With Python: Selenium supports all major languages, such as Python, C#, Ruby, and JavaScript. In this chapter, learn how to install Selenium 4 for Python and the features of Python in Selenium 4, such as Relative locators, Browser manipulation, and Chrom DevTool protocol.

  4. Selenium 4 Is Now W3C Compliant: JSON Wireframe protocol is retiring from Selenium 4, and they are adopting W3C protocol to learn in detail about the advantages and impact of these changes.

  5. How To Use Selenium 4 Relative Locator? : Selenium 4 came with new features such as Relative Locators that allow constructing locators with reference and easily located constructors nearby. Get to know its different use cases with examples.

  6. Selenium Grid 4 Tutorial For Distributed Testing: Selenium Grid 4 allows you to perform tests over different browsers, OS, and device combinations. It also enables parallel execution browser testing, reads up on various features of Selenium Grid 4 and how to download it, and runs a test on Selenium Grid 4 with best practices.

  7. Selenium Video Tutorials: Binge on video tutorials on Selenium by industry experts to get step-by-step direction from automating basic to complex test scenarios with Selenium.

Selenium 101 certifications:

LambdaTest also provides certification for Selenium testing to accelerate your career in Selenium automation testing.

Run Selenium automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful