public void SetValue(string value) { TestFramework.FindWebElement(this).SendKeys(value); }
public void Click() { TestFramework.FindWebElement(this).Click(); }
public static void OpenLoginPage() { TestFramework.OpenUrl("https://www.cars.com/profile/secure/signup/"); }
public static void OpenHomePage() { TestFramework.OpenUrl("https://www.cars.com/"); }
public static void doSearch() { PagesActions.OpenHomePage(); SearchingActions.DoSearch(); TestFramework.Delay(); }
static void Main(string[] args) { TestCase.doTestCase(); TestFramework.Delay(); TestCase.doSearch(); }