How to use Interface WebStorage class of org.openqa.selenium.html5 package

Best Selenium code snippet using org.openqa.selenium.html5.Interface WebStorage

Source:OperaDriver.java Github

copy

Full Screen

1// Licensed to the Software Freedom Conservancy (SFC) under one2// or more contributor license agreements. See the NOTICE file3// distributed with this work for additional information4// regarding copyright ownership. The SFC licenses this file5// to you under the Apache License, Version 2.0 (the6// "License"); you may not use this file except in compliance7// with the License. You may obtain a copy of the License at8//9// http://www.apache.org/licenses/LICENSE-2.010//11// Unless required by applicable law or agreed to in writing,12// software distributed under the License is distributed on an13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY14// KIND, either express or implied. See the License for the15// specific language governing permissions and limitations16// under the License.17package org.openqa.selenium.opera;18import org.openqa.selenium.Capabilities;19import org.openqa.selenium.WebDriver;20import org.openqa.selenium.WebDriverException;21import org.openqa.selenium.html5.LocalStorage;22import org.openqa.selenium.html5.Location;23import org.openqa.selenium.html5.LocationContext;24import org.openqa.selenium.html5.SessionStorage;25import org.openqa.selenium.html5.WebStorage;26import org.openqa.selenium.remote.FileDetector;27import org.openqa.selenium.remote.RemoteWebDriver;28import org.openqa.selenium.remote.html5.RemoteLocationContext;29import org.openqa.selenium.remote.html5.RemoteWebStorage;30import org.openqa.selenium.remote.service.DriverCommandExecutor;31/**32 * A {@link WebDriver} implementation that controls a Blink-based Opera browser running on the local33 * machine. This class is provided as a convenience for easily testing the Chrome browser. The34 * control server which each instance communicates with will live and die with the instance.35 *36 * To avoid unnecessarily restarting the OperaDriver server with each instance, use a37 * {@link RemoteWebDriver} coupled with the desired {@link OperaDriverService}, which is managed38 * separately. For example: <pre>{@code39 *40 * import static org.junit.Assert.assertEquals;41 *42 * import org.junit.*;43 * import org.junit.runner.RunWith;44 * import org.junit.runners.JUnit4;45 * import org.openqa.selenium.opera.OperaDriverService;46 * import org.openqa.selenium.remote.DesiredCapabilities;47 * import org.openqa.selenium.remote.RemoteWebDriver;48 *49 * {@literal @RunWith(JUnit4.class)}50 * public class OperaTest extends TestCase {51 *52 * private static OperaDriverService service;53 * private WebDriver driver;54 *55 * {@literal @BeforeClass}56 * public static void createAndStartService() {57 * service = new OperaDriverService.Builder()58 * .usingDriverExecutable(new File("path/to/my/operadriver.exe"))59 * .usingAnyFreePort()60 * .build();61 * service.start();62 * }63 *64 * {@literal @AfterClass}65 * public static void createAndStopService() {66 * service.stop();67 * }68 *69 * {@literal @Before}70 * public void createDriver() {71 * driver = new RemoteWebDriver(service.getUrl(),72 * DesiredCapabilities.opera());73 * }74 *75 * {@literal @After}76 * public void quitDriver() {77 * driver.quit();78 * }79 *80 * {@literal @Test}81 * public void testGoogleSearch() {82 * driver.get("http://www.google.com");83 * WebElement searchBox = driver.findElement(By.name("q"));84 * searchBox.sendKeys("webdriver");85 * searchBox.quit();86 * assertEquals("webdriver - Google Search", driver.getTitle());87 * }88 * }89 * }</pre>90 *91 * Note that unlike OperaDriver, RemoteWebDriver doesn't directly implement92 * role interfaces such as {@link LocationContext} and {@link WebStorage}.93 * Therefore, to access that functionality, it needs to be94 * {@link org.openqa.selenium.remote.Augmenter augmented} and then cast95 * to the appropriate interface.96 *97 * @see OperaDriverService#createDefaultService98 */99public class OperaDriver extends RemoteWebDriver100 implements LocationContext, WebStorage {101 private RemoteLocationContext locationContext;102 private RemoteWebStorage webStorage;103 /**104 * Creates a new OperaDriver using the {@link OperaDriverService#createDefaultService default}105 * server configuration.106 *107 * @see #OperaDriver(OperaDriverService, OperaOptions)108 */109 public OperaDriver() {110 this(OperaDriverService.createDefaultService(), new OperaOptions());111 }112 /**113 * Creates a new OperaDriver instance. The {@code service} will be started along with the driver,114 * and shutdown upon calling {@link #quit()}.115 *116 * @param service The service to use.117 * @see #OperaDriver(OperaDriverService, OperaOptions)118 */119 public OperaDriver(OperaDriverService service) {120 this(service, new OperaOptions());121 }122 /**123 * Creates a new OperaDriver instance. The {@code capabilities} will be passed to the124 * chromedriver service.125 *126 * @param capabilities The capabilities required from the OperaDriver.127 * @see #OperaDriver(OperaDriverService, Capabilities)128 */129 public OperaDriver(Capabilities capabilities) {130 this(OperaDriverService.createDefaultService(), capabilities);131 }132 /**133 * Creates a new OperaDriver instance with the specified options.134 *135 * @param options The options to use.136 * @see #OperaDriver(OperaDriverService, OperaOptions)137 */138 public OperaDriver(OperaOptions options) {139 this(OperaDriverService.createDefaultService(), options);140 }141 /**142 * Creates a new OperaDriver instance with the specified options. The {@code service} will be143 * started along with the driver, and shutdown upon calling {@link #quit()}.144 *145 * @param service The service to use.146 * @param options The options to use.147 */148 public OperaDriver(OperaDriverService service, OperaOptions options) {149 this(service, options.toCapabilities());150 }151 /**152 * Creates a new OperaDriver instance. The {@code service} will be started along with the153 * driver, and shutdown upon calling {@link #quit()}.154 *155 * @param service The service to use.156 * @param capabilities The capabilities required from the OperaDriver.157 */158 public OperaDriver(OperaDriverService service, Capabilities capabilities) {159 super(new DriverCommandExecutor(service), capabilities);160 locationContext = new RemoteLocationContext(getExecuteMethod());161 webStorage = new RemoteWebStorage(getExecuteMethod());162 }163 @Override164 public void setFileDetector(FileDetector detector) {165 throw new WebDriverException(166 "Setting the file detector only works on remote webdriver instances obtained " +167 "via RemoteWebDriver");168 }169 @Override170 public LocalStorage getLocalStorage() {171 return webStorage.getLocalStorage();172 }173 @Override174 public SessionStorage getSessionStorage() {175 return webStorage.getSessionStorage();176 }177 @Override178 public Location location() {179 return locationContext.location();180 }181 @Override182 public void setLocation(Location location) {183 locationContext.setLocation(location);184 }185}...

Full Screen

Full Screen

Source:UtilsTest.java Github

copy

Full Screen

1// Licensed to the Software Freedom Conservancy (SFC) under one2// or more contributor license agreements. See the NOTICE file3// distributed with this work for additional information4// regarding copyright ownership. The SFC licenses this file5// to you under the Apache License, Version 2.0 (the6// "License"); you may not use this file except in compliance7// with the License. You may obtain a copy of the License at8//9// http://www.apache.org/licenses/LICENSE-2.010//11// Unless required by applicable law or agreed to in writing,12// software distributed under the License is distributed on an13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY14// KIND, either express or implied. See the License for the15// specific language governing permissions and limitations16// under the License.17package org.openqa.selenium.remote.server.handler.html5;18import static org.junit.Assert.assertEquals;19import static org.junit.Assert.assertSame;20import static org.junit.Assert.fail;21import static org.mockito.Mockito.mock;22import static org.mockito.Mockito.reset;23import static org.mockito.Mockito.verify;24import static org.mockito.Mockito.when;25import com.google.common.collect.ImmutableMap;26import org.junit.Test;27import org.junit.runner.RunWith;28import org.junit.runners.JUnit4;29import org.openqa.selenium.HasCapabilities;30import org.openqa.selenium.UnsupportedCommandException;31import org.openqa.selenium.WebDriver;32import org.openqa.selenium.html5.AppCacheStatus;33import org.openqa.selenium.html5.ApplicationCache;34import org.openqa.selenium.html5.LocalStorage;35import org.openqa.selenium.html5.Location;36import org.openqa.selenium.html5.LocationContext;37import org.openqa.selenium.html5.SessionStorage;38import org.openqa.selenium.html5.WebStorage;39import org.openqa.selenium.remote.CapabilityType;40import org.openqa.selenium.remote.DesiredCapabilities;41import org.openqa.selenium.remote.DriverCommand;42import org.openqa.selenium.remote.ExecuteMethod;43/**44 * Tests for the {@link Utils} class.45 */46@RunWith(JUnit4.class)47public class UtilsTest {48 @Test49 public void returnsInputDriverIfRequestedFeatureIsImplementedDirectly() {50 WebDriver driver = mock(Html5Driver.class);51 assertSame(driver, Utils.getApplicationCache(driver));52 assertSame(driver, Utils.getLocationContext(driver));53 assertSame(driver, Utils.getWebStorage(driver));54 }55 @Test56 public void throwsIfRequestedFeatureIsNotSupported() {57 WebDriver driver = mock(WebDriver.class);58 try {59 Utils.getApplicationCache(driver);60 fail();61 } catch (UnsupportedCommandException expected) {62 // Do nothing.63 }64 try {65 Utils.getLocationContext(driver);66 fail();67 } catch (UnsupportedCommandException expected) {68 // Do nothing.69 }70 try {71 Utils.getWebStorage(driver);72 fail();73 } catch (UnsupportedCommandException expected) {74 // Do nothing.75 }76 }77 @Test78 public void providesRemoteAccessToAppCache() {79 DesiredCapabilities caps = new DesiredCapabilities();80 caps.setCapability(CapabilityType.SUPPORTS_APPLICATION_CACHE, true);81 CapableDriver driver = mock(CapableDriver.class);82 when(driver.getCapabilities()).thenReturn(caps);83 when(driver.execute(DriverCommand.GET_APP_CACHE_STATUS, null))84 .thenReturn(AppCacheStatus.CHECKING.name());85 ApplicationCache cache = Utils.getApplicationCache(driver);86 assertEquals(AppCacheStatus.CHECKING, cache.getStatus());87 }88 @Test89 public void providesRemoteAccessToLocationContext() {90 DesiredCapabilities caps = new DesiredCapabilities();91 caps.setCapability(CapabilityType.SUPPORTS_LOCATION_CONTEXT, true);92 CapableDriver driver = mock(CapableDriver.class);93 when(driver.getCapabilities()).thenReturn(caps);94 when(driver.execute(DriverCommand.GET_LOCATION, null)).thenReturn(95 ImmutableMap.of("latitude", 1.2, "longitude", 3.4, "altitude", 5.6));96 LocationContext context = Utils.getLocationContext(driver);97 Location location = context.location();98 assertEquals(1.2, location.getLatitude(), 0.001);99 assertEquals(3.4, location.getLongitude(), 0.001);100 assertEquals(5.6, location.getAltitude(), 0.001);101 reset(driver);102 location = new Location(7, 8, 9);103 context.setLocation(location);104 verify(driver).execute(DriverCommand.SET_LOCATION, ImmutableMap.of("location", location));105 }106 @Test107 public void providesRemoteAccessToWebStorage() {108 DesiredCapabilities caps = new DesiredCapabilities();109 caps.setCapability(CapabilityType.SUPPORTS_WEB_STORAGE, true);110 CapableDriver driver = mock(CapableDriver.class);111 when(driver.getCapabilities()).thenReturn(caps);112 WebStorage storage = Utils.getWebStorage(driver);113 LocalStorage localStorage = storage.getLocalStorage();114 SessionStorage sessionStorage = storage.getSessionStorage();115 localStorage.setItem("foo", "bar");116 sessionStorage.setItem("bim", "baz");117 verify(driver).execute(DriverCommand.SET_LOCAL_STORAGE_ITEM, ImmutableMap.of(118 "key", "foo", "value", "bar"));119 verify(driver).execute(DriverCommand.SET_SESSION_STORAGE_ITEM, ImmutableMap.of(120 "key", "bim", "value", "baz"));121 }122 interface CapableDriver extends WebDriver, ExecuteMethod, HasCapabilities {123 }124 interface Html5Driver extends WebDriver, ApplicationCache, LocationContext, WebStorage {125 }126}...

Full Screen

Full Screen

Source:Utils.java Github

copy

Full Screen

1package org.openqa.selenium.remote.server.handler.html5;2import com.google.common.base.Throwables;3import java.lang.reflect.Constructor;4import java.lang.reflect.InvocationTargetException;5import org.openqa.selenium.Capabilities;6import org.openqa.selenium.HasCapabilities;7import org.openqa.selenium.UnsupportedCommandException;8import org.openqa.selenium.WebDriver;9import org.openqa.selenium.WebDriverException;10import org.openqa.selenium.html5.ApplicationCache;11import org.openqa.selenium.html5.LocationContext;12import org.openqa.selenium.html5.WebStorage;13import org.openqa.selenium.mobile.NetworkConnection;14import org.openqa.selenium.remote.ExecuteMethod;15import org.openqa.selenium.remote.html5.RemoteApplicationCache;16import org.openqa.selenium.remote.html5.RemoteLocationContext;17import org.openqa.selenium.remote.html5.RemoteWebStorage;18import org.openqa.selenium.remote.mobile.RemoteNetworkConnection;19public class Utils20{21 public Utils() {}22 23 static ApplicationCache getApplicationCache(WebDriver driver)24 {25 return (ApplicationCache)convert(driver, ApplicationCache.class, "applicationCacheEnabled", RemoteApplicationCache.class);26 }27 28 public static NetworkConnection getNetworkConnection(WebDriver driver)29 {30 return (NetworkConnection)convert(driver, NetworkConnection.class, "networkConnectionEnabled", RemoteNetworkConnection.class);31 }32 33 static LocationContext getLocationContext(WebDriver driver)34 {35 return (LocationContext)convert(driver, LocationContext.class, "locationContextEnabled", RemoteLocationContext.class);36 }37 38 static WebStorage getWebStorage(WebDriver driver)39 {40 return (WebStorage)convert(driver, WebStorage.class, "webStorageEnabled", RemoteWebStorage.class);41 }42 43 private static <T> T convert(WebDriver driver, Class<T> interfaceClazz, String capability, Class<? extends T> remoteImplementationClazz)44 {45 if (interfaceClazz.isInstance(driver)) {46 return interfaceClazz.cast(driver);47 }48 49 if (((driver instanceof ExecuteMethod)) && ((driver instanceof HasCapabilities)))50 {51 if (((HasCapabilities)driver).getCapabilities().is(capability)) {52 try {53 return 54 55 remoteImplementationClazz.getConstructor(new Class[] { ExecuteMethod.class }).newInstance(new Object[] { (ExecuteMethod)driver });56 } catch (InstantiationException e) {57 throw new WebDriverException(e);58 } catch (IllegalAccessException e) {59 throw new WebDriverException(e);60 } catch (InvocationTargetException e) {61 throw Throwables.propagate(e.getCause());62 } catch (NoSuchMethodException e) {63 throw new WebDriverException(e);64 }65 }66 }67 68 throw new UnsupportedCommandException("driver (" + driver.getClass().getName() + ") does not support " + interfaceClazz.getName());69 }70}...

Full Screen

Full Screen

Interface WebStorage

Using AI Code Generation

copy

Full Screen

1import org.openqa.selenium.html5.WebStorage;2import org.openqa.selenium.html5.LocalStorage;3import org.openqa.selenium.html5.SessionStorage;4import org.openqa.selenium.html5.Location;5import org.openqa.selenium.html5.LocationContext;6import org.openqa.selenium.html5.ApplicationCache;7import org.openqa.selenium.html5.BrowserConnection;8import org.openqa.selenium.html5.DatabaseStorage;9import org.openqa.selenium.html5.WebStorage;10import org.openqa.selenium.html5.LocalStorage;11import org.openqa.selenium.html5.SessionStorage;12import org.openqa.selenium.html5.Location;13import org.openqa.selenium.html5.LocationContext;14import org.openqa.selenium.html5.ApplicationCache;15import org.openqa.selenium.html5.BrowserConnection;16import org.openqa.selenium.html5.DatabaseStorage;17import org.openqa.selenium.html5.WebStorage;18import org.openqa.selenium.html5.LocalStorage;19import org.openqa.selenium.html5.SessionStorage;20import org.openqa.selenium.html5.Location;21import org.openqa.selenium.html5.LocationContext;22import org.openqa.selenium.html5.ApplicationCache;23import org.openqa.selenium.html5.BrowserConnection;24import org.openqa.selenium.html5.DatabaseStorage;25import org.openqa.selenium.html5.WebStorage;26import org.openqa.selenium.html5.LocalStorage;27import org.openqa.selenium.html5.SessionStorage;28import org.openqa.selenium.html5.Location;29import org.openqa.selenium.html5.LocationContext;30import org.openqa.selenium.html5.ApplicationCache;31import org.openqa.selenium.html5.BrowserConnection;32import org.openqa.selenium.html5.DatabaseStorage;33import org.openqa.selenium.html5.WebStorage;34import org.openqa.selenium.html5.LocalStorage;35import org.openqa.selenium.html5.SessionStorage;36import org.openqa.selenium.html5.Location;37import org.openqa.selenium.html5.LocationContext;38import org.openqa.selenium.html5.ApplicationCache;39import org.openqa.selenium.html5.BrowserConnection;40import org.openqa.selenium.html5.DatabaseStorage;41import org.openqa.selenium.html5.WebStorage;42import org.openqa.selenium.html5.LocalStorage;43import org.openqa.selenium.html5.SessionStorage;44import org.openqa.selenium.html5.Location;45import org.openqa.selenium.html5.LocationContext;46import org.openqa.selenium.html5.ApplicationCache;47import org.openqa.selenium.html5.BrowserConnection;48import org.openqa.selenium.html5.DatabaseStorage;49import org.openqa.selenium.html5.LocalStorage;50import org.openqa.selenium.html5.SessionStorage;51import org.openqa.selenium.html5.Location;52import org.openqa.selenium.html5.LocationContext;53import org.openqa.selenium.html5.ApplicationCache;54import org.openqa.selenium.html5.BrowserConnection;55import org.openqa.selenium.html5.DatabaseStorage;56import org.openqa

Full Screen

Full Screen

Interface WebStorage

Using AI Code Generation

copy

Full Screen

1import org.openqa.selenium.html5.WebStorage;2import org.openqa.selenium.html5.LocalStorage;3import org.openqa.selenium.html5.SessionStorage;4import org.openqa.selenium.html5.Location;5import org.openqa.selenium.html5.ApplicationCache;6import org.openqa.selenium.html5.LocationContext;7import org.openqa.selenium.html5.DatabaseStorage;8import org.openqa.selenium.html5.WebStorage;9import org.openqa.selenium.html5.Location;10import org.openqa.selenium.html5.LocationContext;11import org.openqa.selenium.html5.DatabaseStorage;12import org.openqa.selenium.html5.WebStorage;13import org.openqa.selenium.html5.Location;14import org.openqa.selenium.html5.LocationContext;15import org.openqa.selenium.html5.DatabaseStorage;16import org.openqa.selenium.html5.WebStorage;17import org.openqa.selenium.html5.LocalStorage;18import org.openqa.selenium.html5.SessionStorage;19import org.openqa.selenium.html5.Location;20import org.openqa.selenium.html5.ApplicationCache;21import org.openqa.selenium.html5.LocationContext;22import org.openqa.selenium.html5.DatabaseStorage;23import org.openqa.selenium.html5.WebStorage;24import org.openqa.selenium.html5.Location;25import org.openqa.selenium.html5.LocationContext;26import org.openqa.selenium.html5.DatabaseStorage;27import org.openqa.selenium.html5.WebStorage;28import org.openqa.selenium.html5.Location;29import org.openqa.selenium.html5.LocationContext;30import org.openqa.selenium.html5.DatabaseStorage;31Method Description clear() This method is used to clear the data in the LocalStorage object. getItem(String key) This method is used to get the value of the specified key. key(int index) This method is used to get the key at the specified index. removeItem(String key) This method is used to remove the specified key and its value. setItem(String

Full Screen

Full Screen

Interface WebStorage

Using AI Code Generation

copy

Full Screen

1package org.openqa.selenium.html5;2import org.openqa.selenium.WebDriver;3public interface WebStorage {4 LocalStorage getLocalStorage();5 SessionStorage getSessionStorage();6}7package org.openqa.selenium.html5;8import java.util.Set;9public interface LocalStorage {10 void clear();11 String getItem(String key);12 Set<String> keySet();13 void removeItem(String key);14 void setItem(String key, String value);15}16package org.openqa.selenium.html5;17import java.util.Set;18public interface SessionStorage {19 void clear();20 String getItem(String key);21 Set<String> keySet();22 void removeItem(String key);23 void setItem(String key, String value);24}25package org.openqa.selenium.html5;26public interface Location {27 double getAltitude();28 double getLatitude();29 double getLongitude();30 double getAccuracy();31}32package org.openqa.selenium.html5;33import java.util.Set;34public interface ApplicationCache {35 enum Status {36 }37 void clear();38 void delete();39 Status getStatus();40 Set<String> keySet();41 void swapCache();42}43package org.openqa.selenium.html5;44import org.openqa.selenium.WebDriver;45public interface WebStorage {46 LocalStorage getLocalStorage();47 SessionStorage getSessionStorage();48}49package org.openqa.selenium.html5;50import org.openqa.selenium.WebDriver;51public interface WebStorage {52 LocalStorage getLocalStorage();53 SessionStorage getSessionStorage();54}55package org.openqa.selenium.html5;56import org.openqa.selenium.WebDriver;57public interface WebStorage {58 LocalStorage getLocalStorage();59 SessionStorage getSessionStorage();60}61package org.openqa.selenium.html5;62import org.openqa.selenium.WebDriver;63public interface WebStorage {64 LocalStorage getLocalStorage();65 SessionStorage getSessionStorage();66}

Full Screen

Full Screen
copy
1class Test{2 int x, y;3 private Test(){4 .......5 .......6 }7}8
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.

Most used methods in Interface-WebStorage

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