Skip to content

Releases: stirno/FluentAutomation

v3.0.0.0 Release

25 May 15:19
Compare
Choose a tag to compare

v2.2.0.1 - Multi browser execution, sticky sessions

27 Oct 00:28
Compare
Choose a tag to compare

New toys:

FluentSession.EnableStickySession();
FluentSession.DisableStickySession();
FluentAutomation.SeleniumWebDriver.Bootstrap(Browser.Chrome, Browser.Firefox, Browser.PhantomJs);

On test classes, you can now get access to the session object and IoC container. This should allow complete extensibility for users:

public class Test1 : FluentTest
{
    public Test1()
    {
        FluentAutomation.SeleniumWebDriver.Bootstrap(Browser.Chrome);
        this.Session.Container.Register<IWebDriver>((c, o) => new RemoteWebDriver(...));
    }

    public void TestMethod1()
    {
        I.Open("http://google.com/");
    }
}

Updated to use Selenium 2.37