Package at.willhaben.willtest.config
Class FirefoxConfiguration<D extends org.openqa.selenium.WebDriver>
- java.lang.Object
-
- at.willhaben.willtest.config.FirefoxConfiguration<D>
-
@Deprecated public class FirefoxConfiguration<D extends org.openqa.selenium.WebDriver> extends java.lang.ObjectDeprecated.Central class to configure anything on a firefox instance which is more than what aWebDriverConfigurationParticipantenables to change. Builds the output ofFirefoxConfigurationParticipantinstances together into aFirefoxProfile, and takes care of callingFirefoxBinaryProviderto get aFirefoxBinary.FirefoxConfigurationParticipantinstances can also change the settings of theFirefoxBinary.
-
-
Constructor Summary
Constructors Constructor Description FirefoxConfiguration()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description FirefoxConfiguration<D>addFirefoxConfigurationParticipant(FirefoxConfigurationParticipant firefoxConfigurationParticipant)Deprecated.Adds aFirefoxConfigurationParticipantto the list.org.openqa.selenium.firefox.FirefoxBinarygetFirefoxBinary()Deprecated.protected java.util.List<FirefoxConfigurationParticipant>getFirefoxConfigurationParticipantList()Deprecated.org.openqa.selenium.firefox.FirefoxProfilegetFirefoxProfile()Deprecated.voidsetFirefoxBinaryProvider(FirefoxBinaryProvider firefoxBinaryProvider)Deprecated.
-
-
-
Method Detail
-
setFirefoxBinaryProvider
public void setFirefoxBinaryProvider(FirefoxBinaryProvider firefoxBinaryProvider)
Deprecated.
-
addFirefoxConfigurationParticipant
public FirefoxConfiguration<D> addFirefoxConfigurationParticipant(FirefoxConfigurationParticipant firefoxConfigurationParticipant)
Deprecated.Adds aFirefoxConfigurationParticipantto the list. This participant will be called before creating the actual firefox browser, and it can influence theFirefoxProfile- Parameters:
firefoxConfigurationParticipant- the participant to be added- Returns:
- this to enable method chaining
-
getFirefoxConfigurationParticipantList
protected java.util.List<FirefoxConfigurationParticipant> getFirefoxConfigurationParticipantList()
Deprecated.
-
getFirefoxBinary
public org.openqa.selenium.firefox.FirefoxBinary getFirefoxBinary()
Deprecated.- Returns:
- fully configured firefox binary
-
getFirefoxProfile
public org.openqa.selenium.firefox.FirefoxProfile getFirefoxProfile()
Deprecated.- Returns:
- fully configured firefox profile
-
-