FluentAutomation v2.2.0.1 Release Notes

Release Date: 2013-10-27 // over 10 years ago
  • 🆕 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