I'm building up a Fluentautomation script with a pathway to step through my application with testing. Is it possible to record timings between actions, rather than just getting the overall timing at the end? i.e.
var TestChrome = Require<F14N>()
.Init<FluentAutomation.SeleniumWebDriver>()
.Bootstrap("Chrome")
.Config(settings => {
// Easy access to FluentAutomation.Settings values
settings.DefaultWaitUntilTimeout = TimeSpan.FromSeconds(1);
});
TestChrome.Run("Hello Google", I => {
I.Open("http://master.neutrino.com");
I.Enter("myUserName").In("#txtUsername");
I.Enter("myPassword").In("#txtPassword");
I.Click("#btnLogin");
// want to log timing here
I.Enter("Fred Bloggs\r\n").In("#inputGlobalSearch");
I.Wait(1);
//log timing here also
...etc
});