Click or drag to resize

BaseConfigurationTestBrowser Property

Framework to automate tests using Selenium WebDriver
Gets the Driver.

Namespace: Ocaramba
Assembly: OcarambaLite (in OcarambaLite.dll) Version: 1.0.0+d8e789f8644d1a9b63485ad7914acf4f489f3ef9
Syntax
C#
public static BrowserType TestBrowser { get; }
Request Example

Property Value

BrowserType
Example
How to use it:
C#
if (BaseConfiguration.TestBrowser == BrowserType.Firefox)
    {
    this.Driver.GetElement(this.fileLink.Format(fileName), "Click on file").Click();
    };
See Also