public void SelectItem(string item) { Click(); SpillmanLogin loginForm = new SpillmanLogin(LoginFormXPath); ListItem selectListItem = loginForm.GetListItem(item); selectListItem.Focus(); selectListItem.Click(); }
public void TestMethod1() { SpillmanLogin spillmanLoginForm = new SpillmanLogin(SpillmanLogin.LoginFormXPath); }
public SpillmanLogin(string xPath) : base(xPath) { _loginFormInstance = this; }