Are you referring to the .cs file associated with the recording, or the whole project (or something else)?
Looking at the auto-generated code, I see part of the problem:
- Code: Select all
void ITestModule.Run()
{
Mouse.DefaultMoveTime = 300;
Keyboard.DefaultKeyPressTime = 100;
Delay.SpeedFactor = 1.0;
Init();
Report.Log(ReportLevel.Info, "Website", "Opening web site 'http://toc-dev.rl.gov/CostPlan?debug=false' with browser 'IE'", new RecordItemIndex(0));
Host.Local.OpenBrowser("http://toc-dev.rl.gov/CostPlan?debug=false", "IE");
Report.Log(ReportLevel.Info, "Mouse", "Mouse Left Click item 'WebDocumentCostPlan.SomeTableTag1.TdTagBaseline' at 2;2.", repo.WebDocumentCostPlan.SomeTableTag1.TdTagBaselineInfo, new RecordItemIndex(1));
repo.WebDocumentCostPlan.SomeTableTag1.TdTagBaseline.Click("2;2");
Delay.Milliseconds(9700);
Report.Log(ReportLevel.Info, "Mouse", "Mouse Left Click item 'WebDocumentCostPlan.SomeTableTag1.SpanTagBL_Estimates' at 23;6.", repo.WebDocumentCostPlan.SomeTableTag1.SpanTagBL_EstimatesInfo, new RecordItemIndex(2));
repo.WebDocumentCostPlan.SomeTableTag1.SpanTagBL_Estimates.Click("23;6");
Delay.Milliseconds(1700);
It seems that there should be a Delay.Milliseconds(9700); after the Host.Local.OpenBrowser line.
I would upload a picture of the Designer, but my company blocks most image upload sites. I can assure you, however, that the Duration property does indeed read "10s".