How to use custom method of org.fluentlenium.configuration.PropertiesBackendConfigurationTest class

Best FluentLenium code snippet using org.fluentlenium.configuration.PropertiesBackendConfigurationTest.custom

Source:PropertiesBackendConfigurationTest.java Github

copy

Full Screen

...234 Assertions.assertThat(getConfiguration().getHtmlDumpMode())235 .isEqualTo(ConfigurationProperties.TriggerMode.AUTOMATIC_ON_FAIL);236 }237 @Test238 public void custom() {239 Assertions.assertThat(getConfiguration().getHtmlDumpMode()).isNull();240 mockProperty("key", "value");241 Assertions.assertThat(getConfiguration().getCustomProperty("key")).isEqualTo("value");242 }243}...

Full Screen

Full Screen

Source:AnnotationConfigurationTest.java Github

copy

Full Screen

...16 configurationDefaults = DummyConfigurationDefaults.class, eventsEnabled = FluentConfiguration.BooleanValue.FALSE,17 capabilities = "{\"javascriptEnabled\": true}", remoteUrl = "http://localhost:4444", htmlDumpMode =18 ConfigurationProperties.TriggerMode.AUTOMATIC_ON_FAIL, htmlDumpPath = "/html-path", implicitlyWait = 1000,19 pageLoadTimeout = 2000, awaitPollingEvery = 10, awaitAtMost = 100, screenshotMode = ConfigurationProperties20 .TriggerMode.MANUAL, screenshotPath = "/screenshot-path", scriptTimeout = 3000, webDriver = "firefox", custom =21 @CustomProperty(name = "key", value = "value"), driverLifecycle = ConfigurationProperties.DriverLifecycle.METHOD,22 browserTimeout = 5000L, browserTimeoutRetries = 3, deleteCookies = FluentConfiguration.BooleanValue.TRUE)23 public static class ConfiguredClass {24 }25 @FluentConfiguration(capabilities = "firefox")26 public static class DesiredCapabilitiesClass {27 }28 @FluentConfiguration(capabilities = "org.fluentlenium.configuration.TestCapabilities")29 public static class CapabilitiesClassNameClass {30 }31 @FluentConfiguration(capabilities = "test-capabilities-factory")32 public static class CapabilitiesFactoryClass {33 }34 @FluentConfiguration35 public static class DefaultClass {36 }37 @BeforeClass38 public static void beforeClass() {39 configuration = new AnnotationConfiguration(ConfiguredClass.class);40 defaultConfiguration = new AnnotationConfiguration(DefaultClass.class);41 noConfiguration = new AnnotationConfiguration(Object.class);42 desiredCapabilitiesConfiguration = new AnnotationConfiguration(DesiredCapabilitiesClass.class);43 capabilitiesClassNameConfiguration = new AnnotationConfiguration(CapabilitiesClassNameClass.class);44 capabilitiesFactoryConfiguration = new AnnotationConfiguration(CapabilitiesFactoryClass.class);45 }46 @Test47 public void configurationFactory() {48 Assertions.assertThat(configuration.getConfigurationFactory()).isEqualTo(DummyConfigurationFactory.class);49 }50 @Test51 public void defaultConfigurationFactory() {52 Assertions.assertThat(defaultConfiguration.getConfigurationFactory()).isNull();53 }54 @Test55 public void configurationDefaults() {56 Assertions.assertThat(configuration.getConfigurationDefaults()).isEqualTo(DummyConfigurationDefaults.class);57 }58 @Test59 public void defaultConfigurationDefaults() {60 Assertions.assertThat(defaultConfiguration.getConfigurationDefaults()).isNull();61 }62 @Test63 public void webDriver() {64 Assertions.assertThat(noConfiguration.getWebDriver()).isNull();65 Assertions.assertThat(defaultConfiguration.getWebDriver()).isNull();66 Assertions.assertThat(configuration.getWebDriver()).isEqualTo("firefox");67 }68 @Test69 public void remoteUrl() {70 Assertions.assertThat(noConfiguration.getRemoteUrl()).isNull();71 Assertions.assertThat(defaultConfiguration.getRemoteUrl()).isNull();72 Assertions.assertThat(configuration.getRemoteUrl()).isEqualTo("http://localhost:4444");73 }74 @Test75 public void capabilities() {76 Assertions.assertThat(noConfiguration.getCapabilities()).isNull();77 Assertions.assertThat(defaultConfiguration.getCapabilities()).isNull();78 DesiredCapabilities capabilities = new DesiredCapabilities();79 capabilities.setJavascriptEnabled(true);80 Assertions.assertThat(configuration.getCapabilities()).isEqualTo(capabilities);81 }82 @Test83 public void desiredCapabilities() {84 DesiredCapabilities capabilities = DesiredCapabilities.firefox();85 Assertions.assertThat(desiredCapabilitiesConfiguration.getCapabilities()).isEqualTo(capabilities);86 DesiredCapabilities differentCapabilities = DesiredCapabilities.chrome();87 Assertions.assertThat(desiredCapabilitiesConfiguration.getCapabilities()).isNotEqualTo(differentCapabilities);88 }89 @Test90 public void capabilitiesClassName() {91 Assertions.assertThat(capabilitiesClassNameConfiguration.getCapabilities()).isExactlyInstanceOf(TestCapabilities.class);92 }93 @Test94 public void capabilitiesFactory() {95 Assertions.assertThat(capabilitiesFactoryConfiguration.getCapabilities()).isExactlyInstanceOf(TestCapabilities.class);96 }97 @Test98 public void driverLifecycle() {99 Assertions.assertThat(noConfiguration.getDriverLifecycle()).isNull();100 Assertions.assertThat(defaultConfiguration.getDriverLifecycle()).isNull();101 Assertions.assertThat(configuration.getDriverLifecycle()).isEqualTo(ConfigurationProperties.DriverLifecycle.METHOD);102 }103 @Test104 public void browserTimeout() {105 Assertions.assertThat(noConfiguration.getBrowserTimeout()).isNull();106 Assertions.assertThat(defaultConfiguration.getBrowserTimeout()).isEqualTo(60000L);107 Assertions.assertThat(configuration.getBrowserTimeout()).isEqualTo(5000L);108 }109 @Test110 public void browserTimeoutRetries() {111 Assertions.assertThat(noConfiguration.getBrowserTimeoutRetries()).isNull();112 Assertions.assertThat(defaultConfiguration.getBrowserTimeoutRetries()).isEqualTo(2);113 Assertions.assertThat(configuration.getBrowserTimeoutRetries()).isEqualTo(3);114 }115 @Test116 public void deleteCookies() {117 Assertions.assertThat(noConfiguration.getDeleteCookies()).isNull();118 Assertions.assertThat(defaultConfiguration.getDeleteCookies()).isNull();119 Assertions.assertThat(configuration.getDeleteCookies()).isTrue();120 }121 @Test122 public void baseUrl() {123 Assertions.assertThat(noConfiguration.getBaseUrl()).isNull();124 Assertions.assertThat(defaultConfiguration.getBaseUrl()).isNull();125 Assertions.assertThat(configuration.getBaseUrl()).isEqualTo("http://localhost:3000");126 }127 @Test128 public void pageLoadTimeout() {129 Assertions.assertThat(noConfiguration.getPageLoadTimeout()).isNull();130 Assertions.assertThat(defaultConfiguration.getPageLoadTimeout()).isNull();131 Assertions.assertThat(configuration.getPageLoadTimeout()).isEqualTo(2000L);132 }133 @Test134 public void implicitlyWait() {135 Assertions.assertThat(noConfiguration.getImplicitlyWait()).isNull();136 Assertions.assertThat(defaultConfiguration.getImplicitlyWait()).isNull();137 Assertions.assertThat(configuration.getImplicitlyWait()).isEqualTo(1000L);138 }139 @Test140 public void awaitAtMost() {141 Assertions.assertThat(noConfiguration.getAwaitAtMost()).isNull();142 Assertions.assertThat(defaultConfiguration.getAwaitAtMost()).isNull();143 Assertions.assertThat(configuration.getAwaitAtMost()).isEqualTo(100L);144 }145 @Test146 public void awaitPollingEvery() {147 Assertions.assertThat(noConfiguration.getAwaitPollingEvery()).isNull();148 Assertions.assertThat(defaultConfiguration.getAwaitPollingEvery()).isNull();149 Assertions.assertThat(configuration.getAwaitPollingEvery()).isEqualTo(10L);150 }151 @Test152 public void scriptTimeout() {153 Assertions.assertThat(noConfiguration.getScriptTimeout()).isNull();154 Assertions.assertThat(defaultConfiguration.getScriptTimeout()).isNull();155 Assertions.assertThat(configuration.getScriptTimeout()).isEqualTo(3000L);156 }157 @Test158 public void eventsEnabled() {159 Assertions.assertThat(noConfiguration.getEventsEnabled()).isNull();160 Assertions.assertThat(defaultConfiguration.getEventsEnabled()).isNull();161 Assertions.assertThat(configuration.getEventsEnabled()).isEqualTo(false);162 }163 @Test164 public void screenshotPath() {165 Assertions.assertThat(noConfiguration.getScreenshotPath()).isNull();166 Assertions.assertThat(defaultConfiguration.getScreenshotPath()).isNull();167 Assertions.assertThat(configuration.getScreenshotPath()).isEqualTo("/screenshot-path");168 }169 @Test170 public void htmlDumpPath() {171 Assertions.assertThat(noConfiguration.getHtmlDumpPath()).isNull();172 Assertions.assertThat(defaultConfiguration.getHtmlDumpPath()).isNull();173 Assertions.assertThat(configuration.getHtmlDumpPath()).isEqualTo("/html-path");174 }175 @Test176 public void screenshotMode() {177 Assertions.assertThat(noConfiguration.getScreenshotMode()).isNull();178 Assertions.assertThat(defaultConfiguration.getScreenshotMode()).isNull();179 Assertions.assertThat(configuration.getScreenshotMode()).isEqualTo(ConfigurationProperties.TriggerMode.MANUAL);180 }181 @Test182 public void htmlDumpMode() {183 Assertions.assertThat(noConfiguration.getHtmlDumpMode()).isNull();184 Assertions.assertThat(defaultConfiguration.getHtmlDumpMode()).isNull();185 Assertions.assertThat(configuration.getHtmlDumpMode()).isEqualTo(ConfigurationProperties.TriggerMode.AUTOMATIC_ON_FAIL);186 }187 @Test188 public void custom() {189 Assertions.assertThat(noConfiguration.getCustomProperty("key")).isNull();190 Assertions.assertThat(defaultConfiguration.getCustomProperty("key")).isNull();191 Assertions.assertThat(configuration.getCustomProperty("key")).isEqualTo("value");192 }193}...

Full Screen

Full Screen

custom

Using AI Code Generation

copy

Full Screen

1import org.fluentlenium.configuration.PropertiesBackendConfiguration;2import org.fluentlenium.configuration.PropertiesBackendConfigurationTest;3public class CustomPropertiesBackendConfiguration extends PropertiesBackendConfiguration {4 public CustomPropertiesBackendConfiguration() {5 super();6 PropertiesBackendConfigurationTest test = new PropertiesBackendConfigurationTest();7 test.customMethod();8 }9}10@ExtendWith(FluentTestExtension.class)11public class FluentTestExtensionTest {12 public void test() {13 System.out.println("Hello World");14 }15}16import org.fluentlenium.configuration.PropertiesBackendConfiguration;17import org.fluentlenium.configuration.PropertiesBackendConfigurationTest;18public class CustomPropertiesBackendConfiguration extends PropertiesBackendConfiguration {19 public CustomPropertiesBackendConfiguration() {20 super();21 PropertiesBackendConfigurationTest test = new PropertiesBackendConfigurationTest();22 test.customMethod();23 }24}25@ExtendWith(FluentTestExtension.class)26public class FluentTestExtensionTest {27 public void test() {28 System.out.println("Hello World");29 }30}31import org.fluentlenium.configuration.PropertiesBackendConfiguration;32import org.fluentlenium.configuration.PropertiesBackendConfigurationTest;33public class CustomPropertiesBackendConfiguration extends PropertiesBackendConfiguration {34 public CustomPropertiesBackendConfiguration() {35 super();36 PropertiesBackendConfigurationTest test = new PropertiesBackendConfigurationTest();37 test.customMethod();38 }39}40@ExtendWith(FluentTestExtension.class)41public class FluentTestExtensionTest {42 public void test() {43 System.out.println("Hello World");44 }45}46import org.fluentlenium.configuration.PropertiesBackendConfiguration;47import org.fluentlenium.configuration.PropertiesBackendConfigurationTest;48public class CustomPropertiesBackendConfiguration extends PropertiesBackendConfiguration {49 public CustomPropertiesBackendConfiguration() {50 super();51 PropertiesBackendConfigurationTest test = new PropertiesBackendConfigurationTest();52 test.customMethod();53 }54}55@ExtendWith(FluentTestExtension.class)56public class FluentTestExtensionTest {57 public void test() {58 System.out.println("Hello World");59 }60}

Full Screen

Full Screen

custom

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.configuration;2import org.fluentlenium.configuration.ConfigurationProperties.DriverLifecycle;3public class PropertiesBackendConfigurationTest extends PropertiesBackendConfiguration {4 private static final long serialVersionUID = 1L;5 public DriverLifecycle getDriverLifecycle() {6 return DriverLifecycle.METHOD;7 }8}9package org.fluentlenium.configuration;10public enum DriverLifecycle {11}12package org.fluentlenium.configuration;13import org.apache.commons.lang3.StringUtils;14import org.fluentlenium.configuration.ConfigurationProperties.DriverLifecycle;15import org.fluentlenium.configuration.ConfigurationProperties.TriggerMode;16import org.fluentlenium.configuration.ConfigurationProperties.WaitingMode;17public class ConfigurationProperties {18 public static final String BASE_URL = "baseUrl";19 public static final String DRIVER = "driver";20 public static final String DRIVER_LIFECYCLE = "driverLifecycle";21 public static final String EVENTS = "events";22 public static final String EVENTS_TIME_OUT = "eventsTimeout";23 public static final String EVENTS_POLLING = "eventsPolling";24 public static final String EVENTS_POLLING_INTERVAL = "eventsPollingInterval";25 public static final String EVENTS_POLLING_TIMEOUT = "eventsPollingTimeout";26 public static final String EVENTS_POLLING_ATTEMPTS = "eventsPollingAttempts";27 public static final String EVENTS_POLLING_INTERVAL_MULTIPLIER = "eventsPollingIntervalMultiplier";28 public static final String EVENTS_POLLING_INTERVAL_MAX = "eventsPollingIntervalMax";29 public static final String EVENTS_POLLING_INTERVAL_MIN = "eventsPollingIntervalMin";30 public static final String EVENTS_POLLING_INTERVAL_BASE = "eventsPollingIntervalBase";31 public static final String EVENTS_POLLING_INTERVAL_FACTOR = "eventsPollingIntervalFactor";32 public static final String EVENTS_POLLING_INTERVAL_JITTER = "eventsPollingIntervalJitter";33 public static final String EVENTS_POLLING_INTERVAL_RANDOM = "eventsPollingIntervalRandom";34 public static final String EVENTS_POLLING_INTERVAL_START = "eventsPollingIntervalStart";35 public static final String EVENTS_POLLING_INTERVAL_END = "eventsPollingIntervalEnd";

Full Screen

Full Screen

custom

Using AI Code Generation

copy

Full Screen

1public class 4 {2 public static void main(String[] args) {3 System.setProperty("webdriver.chrome.driver", "D:\\chromedriver.exe");4 WebDriver driver = new ChromeDriver();5 driver.findElement(By.name("q")).sendKeys("fluentlenium");6 driver.findElement(By.name("btnK")).click();7 driver.quit();8 }9}

Full Screen

Full Screen

custom

Using AI Code Generation

copy

Full Screen

1public class Test extends FluentTest {2 public WebDriver getDefaultDriver() {3 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();4 return propertiesBackendConfigurationTest.getDriver();5 }6}7public class Test extends FluentTest {8 public WebDriver getDefaultDriver() {9 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();10 return propertiesBackendConfigurationTest.getDriver();11 }12}13public class Test extends FluentTest {14 public WebDriver getDefaultDriver() {15 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();16 return propertiesBackendConfigurationTest.getDriver();17 }18}19public class Test extends FluentTest {20 public WebDriver getDefaultDriver() {21 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();22 return propertiesBackendConfigurationTest.getDriver();23 }24}25public class Test extends FluentTest {26 public WebDriver getDefaultDriver() {27 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();28 return propertiesBackendConfigurationTest.getDriver();29 }30}31public class Test extends FluentTest {32 public WebDriver getDefaultDriver() {33 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();34 return propertiesBackendConfigurationTest.getDriver();35 }36}37public class Test extends FluentTest {38 public WebDriver getDefaultDriver() {39 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();40 return propertiesBackendConfigurationTest.getDriver();41 }42}

Full Screen

Full Screen

custom

Using AI Code Generation

copy

Full Screen

1package org.fluentlenium.configuration;2import org.junit.Test;3import org.junit.runner.RunWith;4import org.openqa.selenium.WebDriver;5import org.openqa.selenium.chrome.ChromeDriver;6import org.openqa.selenium.chrome.ChromeOptions;7import org.openqa.selenium.firefox.FirefoxDriver;8import org.openqa.selenium.remote.DesiredCapabilities;9import org.openqa.selenium.remote.RemoteWebDriver;10import java.net.MalformedURLException;11import java.net.URL;12import static org.assertj.core.api.Assertions.assertThat;13import static org.fluentlenium.configuration.ConfigurationProperties.DriverLifecycle;14import static org.fluentlenium.configuration.ConfigurationProperties.DriverLifecycle.METHOD;15public class PropertiesBackendConfigurationTest {16 public void whenDriverLifecycleIsMethod_thenDriverIsNotQuit() {17 PropertiesBackendConfiguration propertiesBackendConfiguration = new PropertiesBackendConfiguration();18 propertiesBackendConfiguration.setDriverLifecycle(METHOD);19 assertThat(propertiesBackendConfiguration.getDriverLifecycle()).isEqualTo(DriverLifecycle.METHOD);20 }21 public void whenDriverLifecycleIsClass_thenDriverIsQuit() {22 PropertiesBackendConfiguration propertiesBackendConfiguration = new PropertiesBackendConfiguration();23 propertiesBackendConfiguration.setDriverLifecycle(DriverLifecycle.CLASS);24 assertThat(propertiesBackendConfiguration.getDriverLifecycle()).isEqualTo(DriverLifecycle.CLASS);25 }26 public void whenDriverLifecycleIsSuite_thenDriverIsQuit() {27 PropertiesBackendConfiguration propertiesBackendConfiguration = new PropertiesBackendConfiguration();28 propertiesBackendConfiguration.setDriverLifecycle(DriverLifecycle.SUITE);29 assertThat(propertiesBackendConfiguration.getDriverLifecycle()).isEqualTo(DriverLifecycle.SUITE);30 }31 public void whenRemoteDriverUrlIsSet_thenDriverIsRemote() {32 PropertiesBackendConfiguration propertiesBackendConfiguration = new PropertiesBackendConfiguration();33 }34 public void whenRemoteDriverUrlIsNotSet_thenDriverIsNotRemote() {35 PropertiesBackendConfiguration propertiesBackendConfiguration = new PropertiesBackendConfiguration();36 assertThat(propertiesBackendConfiguration.getRemoteDriverUrl()).isNull();37 }38 public void whenRemoteDriverUrlIsNotSet_thenDriverIsNotRemote2() {39 PropertiesBackendConfiguration propertiesBackendConfiguration = new PropertiesBackendConfiguration();40 propertiesBackendConfiguration.setRemoteDriverUrl(null);41 assertThat(propertiesBackendConfiguration.getRemoteDriverUrl()).isNull

Full Screen

Full Screen

custom

Using AI Code Generation

copy

Full Screen

1 public void testCustomMethod() {2 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();3 propertiesBackendConfigurationTest.setTestProperty("test");4 String testProperty = propertiesBackendConfigurationTest.getTestProperty();5 assertThat(testProperty).isEqualTo("test");6 }7}8 public void testCustomMethod() {9 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();10 propertiesBackendConfigurationTest.setTestProperty("test");11 String testProperty = propertiesBackendConfigurationTest.getTestProperty();12 assertThat(testProperty).isEqualTo("test");13 }14}15 public void testCustomMethod() {16 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();17 propertiesBackendConfigurationTest.setTestProperty("test");18 String testProperty = propertiesBackendConfigurationTest.getTestProperty();19 assertThat(testProperty).isEqualTo("test");20 }21}22 public void testCustomMethod() {23 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();24 propertiesBackendConfigurationTest.setTestProperty("test");25 String testProperty = propertiesBackendConfigurationTest.getTestProperty();26 assertThat(testProperty).isEqualTo("test");27 }28}29 public void testCustomMethod() {30 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();31 propertiesBackendConfigurationTest.setTestProperty("test");32 String testProperty = propertiesBackendConfigurationTest.getTestProperty();33 assertThat(testProperty).isEqualTo("test");34 }35}36 public void testCustomMethod() {37 PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();38 propertiesBackendConfigurationTest.setTestProperty("test");

Full Screen

Full Screen

custom

Using AI Code Generation

copy

Full Screen

1PropertiesBackendConfigurationTest propertiesBackendConfigurationTest = new PropertiesBackendConfigurationTest();2propertiesBackendConfigurationTest.setScreenshotPath("/home/ankit/Desktop/");3ConfigurationProperties configurationProperties = new ConfigurationProperties();4configurationProperties.setScreenshotPath("/home/ankit/Desktop/");5ConfigurationProperties configurationProperties = new ConfigurationProperties();6configurationProperties.setScreenshotPath("/home/ankit/Desktop/");7ConfigurationProperties configurationProperties = new ConfigurationProperties();8configurationProperties.setScreenshotPath("/home/ankit/Desktop/");9ConfigurationProperties configurationProperties = new ConfigurationProperties();10configurationProperties.setScreenshotPath("/home/ankit/Desktop/");11ConfigurationProperties configurationProperties = new ConfigurationProperties();12configurationProperties.setScreenshotPath("/home/ankit/Desktop/");13ConfigurationProperties configurationProperties = new ConfigurationProperties();14configurationProperties.setScreenshotPath("/home/ankit/Desktop/");15FluentConfiguration fluentConfiguration = new FluentConfiguration();16fluentConfiguration.setScreenshotPath("/home/ankit/Desktop/");17FluentConfiguration fluentConfiguration = new FluentConfiguration();18fluentConfiguration.setScreenshotPath("/home/ankit/Desktop/");19FluentConfiguration fluentConfiguration = new FluentConfiguration();20fluentConfiguration.setScreenshotPath("/home/ankit/Desktop/");21FluentConfiguration fluentConfiguration = new FluentConfiguration();

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful