Package org.fluentlenium.configuration
Interface ConfigurationMutator
-
- All Known Subinterfaces:
Configuration,FluentControl,FluentPageControl
- All Known Implementing Classes:
BaseFluentHook,BaseHook,ComposedConfiguration,ContainerFluentControl,DefaultFluentContainer,FluentAdapter,FluentControlImpl,FluentDriver,FluentPage,FluentStandalone,FluentStandaloneRunnable,FluentTestRunnerAdapter,IsolatedTest,ProgrammaticConfiguration,WaitHook
public interface ConfigurationMutatorMutation interface of Configuration Properties.- See Also:
ConfigurationProperties
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetAwaitAtMost(java.lang.Long awaitAtMost)Sets the value ofvoidsetAwaitPollingEvery(java.lang.Long awaitPollingEvery)Sets the value ofvoidsetBaseUrl(java.lang.String baseUrl)Sets the value ofvoidsetBrowserTimeout(java.lang.Long timeout)Sets the value ofvoidsetBrowserTimeoutRetries(java.lang.Integer retriesNumber)Sets the value ofvoidsetCapabilities(org.openqa.selenium.Capabilities capabilities)Sets the value ofvoidsetConfigurationFactory(java.lang.Class<? extends ConfigurationFactory> configurationFactory)Sets the value ofvoidsetCustomProperty(java.lang.String key, java.lang.String value)Sets custom value for a custom property keyvoidsetDeleteCookies(java.lang.Boolean deleteCookies)Sets the value ofvoidsetDriverLifecycle(ConfigurationProperties.DriverLifecycle driverLifecycle)Sets the value ofvoidsetEventsEnabled(java.lang.Boolean eventsEnabled)Sets the value ofvoidsetHtmlDumpMode(ConfigurationProperties.TriggerMode htmlDumpMode)Sets the value ofvoidsetHtmlDumpPath(java.lang.String htmlDumpPath)Sets the value ofvoidsetImplicitlyWait(java.lang.Long implicitlyWait)Sets the value ofvoidsetPageLoadTimeout(java.lang.Long pageLoadTimeout)Sets the value ofvoidsetRemoteUrl(java.lang.String remoteUrl)Sets the value ofvoidsetScreenshotMode(ConfigurationProperties.TriggerMode screenshotMode)Sets the value ofvoidsetScreenshotPath(java.lang.String screenshotPath)Sets the value ofvoidsetScriptTimeout(java.lang.Long scriptTimeout)Sets the value ofvoidsetWebDriver(java.lang.String webDriver)Sets the value of
-
-
-
Method Detail
-
setWebDriver
void setWebDriver(java.lang.String webDriver)
Sets the value ofwebDriver
property.- Parameters:
webDriver- property value- See Also:
ConfigurationProperties.getWebDriver()
-
setBrowserTimeout
void setBrowserTimeout(java.lang.Long timeout)
Sets the value ofbrowserTimeout
property.- Parameters:
timeout- property value- See Also:
ConfigurationProperties.getBrowserTimeout()
-
setBrowserTimeoutRetries
void setBrowserTimeoutRetries(java.lang.Integer retriesNumber)
Sets the value ofbrowserTimeoutRetries
property.- Parameters:
retriesNumber- property value- See Also:
ConfigurationProperties.getBrowserTimeoutRetries()
-
setRemoteUrl
void setRemoteUrl(java.lang.String remoteUrl)
Sets the value ofremoteUrl
property.- Parameters:
remoteUrl- property value- See Also:
ConfigurationProperties.getRemoteUrl()
-
setCapabilities
void setCapabilities(org.openqa.selenium.Capabilities capabilities)
Sets the value ofcapabilities
property.- Parameters:
capabilities- property value- See Also:
ConfigurationProperties.getCapabilities()
-
setConfigurationFactory
void setConfigurationFactory(java.lang.Class<? extends ConfigurationFactory> configurationFactory)
Sets the value ofconfigurationFactory
property.- Parameters:
configurationFactory- property value- See Also:
ConfigurationProperties.getConfigurationFactory()
-
setDriverLifecycle
void setDriverLifecycle(ConfigurationProperties.DriverLifecycle driverLifecycle)
Sets the value ofdriverLifecycle
property.- Parameters:
driverLifecycle- property value- See Also:
ConfigurationProperties.getDriverLifecycle()
-
setDeleteCookies
void setDeleteCookies(java.lang.Boolean deleteCookies)
Sets the value ofdeleteCookies
property.- Parameters:
deleteCookies- property value- See Also:
ConfigurationProperties.getDeleteCookies()
-
setBaseUrl
void setBaseUrl(java.lang.String baseUrl)
Sets the value ofbaseUrl
property.- Parameters:
baseUrl- property value- See Also:
()
-
setPageLoadTimeout
void setPageLoadTimeout(java.lang.Long pageLoadTimeout)
Sets the value ofpageLoadTimeout
property.- Parameters:
pageLoadTimeout- property value- See Also:
ConfigurationProperties.getPageLoadTimeout()
-
setImplicitlyWait
void setImplicitlyWait(java.lang.Long implicitlyWait)
Sets the value ofimplicitlyWait
property.- Parameters:
implicitlyWait- property value- See Also:
ConfigurationProperties.getImplicitlyWait()
-
setAwaitAtMost
void setAwaitAtMost(java.lang.Long awaitAtMost)
Sets the value ofawaitAtMost
property- Parameters:
awaitAtMost- property value- See Also:
ConfigurationProperties.getAwaitAtMost()
-
setAwaitPollingEvery
void setAwaitPollingEvery(java.lang.Long awaitPollingEvery)
Sets the value ofawaitPollingEvery
property- Parameters:
awaitPollingEvery- property value- See Also:
ConfigurationProperties.getAwaitPollingEvery()
-
setScriptTimeout
void setScriptTimeout(java.lang.Long scriptTimeout)
Sets the value ofscriptTimeout
property.- Parameters:
scriptTimeout- property value- See Also:
ConfigurationProperties.getScriptTimeout()
-
setEventsEnabled
void setEventsEnabled(java.lang.Boolean eventsEnabled)
Sets the value ofeventsEnabled
property.- Parameters:
eventsEnabled- property value
-
setScreenshotPath
void setScreenshotPath(java.lang.String screenshotPath)
Sets the value ofscreenshotPath
property.- Parameters:
screenshotPath- property value- See Also:
ConfigurationProperties.getScreenshotPath()
-
setScreenshotMode
void setScreenshotMode(ConfigurationProperties.TriggerMode screenshotMode)
Sets the value ofscreenshotMode
property.- Parameters:
screenshotMode- property value- See Also:
ConfigurationProperties.getScreenshotMode()
-
setHtmlDumpPath
void setHtmlDumpPath(java.lang.String htmlDumpPath)
Sets the value ofhtmlDumpPath
property.- Parameters:
htmlDumpPath- property value- See Also:
ConfigurationProperties.getHtmlDumpPath()
-
setHtmlDumpMode
void setHtmlDumpMode(ConfigurationProperties.TriggerMode htmlDumpMode)
Sets the value ofhtmlDumpMode
property.- Parameters:
htmlDumpMode- property value- See Also:
ConfigurationProperties.getHtmlDumpMode()
-
setCustomProperty
void setCustomProperty(java.lang.String key, java.lang.String value)Sets custom value for a custom property key- Parameters:
key- custom property keyvalue- custom property value
-
-