/// <summary> /// Steps that implement the mortgages scenarios. /// </summary> /// <param name="seleniumHelper">Selenium utility class<seealso cref="SeleniumHelper"></param> /// <param name="testBed">Parameter containing the data needed between steps<seealso cref="TestBed"></param> MortgageSteps(SeleniumHelper seleniumHelper, TestBed testBed) { this.seleniumHelper = seleniumHelper; this.testBed = testBed; }
UBSMainSteps(TestBed testBed, IOHelper iOHelper, SeleniumHelper seleniumHelper) { this.testBed = testBed; this.iOHelper = iOHelper; this.seleniumHelper = seleniumHelper; }
// For additional details on SpecFlow hooks see http://go.specflow.org/doc-hooks Hooks(TestBed testBed, IOHelper iOHelper) { this.testBed = testBed; this.iOHelper = iOHelper; }