private void InitElements() { Log.Info("Create group table list"); _groupTablesList = new List <GroupTable>(); for (int i = 1; i <= Has <ElementsList>(By.XPath("//table[@class]")).Count; i++) { _groupTablesList.Add(new GroupTable(By.XPath($"//table[@class][{i}]"))); } _groupsList.ClickElement("Group A"); }
public void GoToSection(string section) { Log.Info($"Open element <{section}> in section"); sectionHeaderMenu.ClickElement(section); }
public void ChoseElement(string paramName) { list.ClickElement(paramName); }