Ejemplo n.º 1
0
 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");
 }
Ejemplo n.º 2
0
 public void GoToSection(string section)
 {
     Log.Info($"Open element <{section}> in section");
     sectionHeaderMenu.ClickElement(section);
 }
Ejemplo n.º 3
0
 public void ChoseElement(string paramName)
 {
     list.ClickElement(paramName);
 }