How to switch from TestFeature to UiTest
Change the inheritance from TestFeature to UiTest.
public class MyTest : TestFeature
{
}public class MyTest : UiTest
{
}Change from RunScenario to Execute method
this.RunScenario(given => this.FirstStep(), then => this.SecondStep());this.Execute(this.TestCaseSteps);public void TestCaseSteps(UiExecutionController controller)
{
this.FirstStep(controller);
this.SecondStep(controller);
}Change how to get the Page Objects
Change the way a configuration is modified before Execution
Change the UiPlayer managers to WebManager
Complete examples for comparison
Last updated
Was this helpful?