FluentAutomation v3.0.0.0 Release Notes
Release Date: 2014-05-25 // about 9 years ago-
Details available here: http://fluent.stirno.com/the-journey-to-3-0/
Previous changes from v2.2.0.1
-
🆕 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