Example #1
0
        public void LogoutUsingTopMenu()
        {
            TopMenu topMenuInstance = MoveToTopMenu();

            Acts.Click(topMenuInstance.LogoutButton);
        }
Example #2
0
        //This method can return new instance of 'About' page so change it in case of need
        public void OpenAboutPage()
        {
            TopMenu topMenuInstance = MoveToTopMenu();

            Acts.Click(topMenuInstance.AboutItem);
        }
Example #3
0
        //This method can return new instance of 'Groups' page so change it in case of need
        public void OpenGroupsPage()
        {
            TopMenu topMenuInstance = MoveToTopMenu();

            Acts.Click(topMenuInstance.GroupsItem);
        }
Example #4
0
        //This method can return new instance of 'Students' page so change it in case of need
        public void OpenStudentsPage()
        {
            TopMenu topMenuInstance = MoveToTopMenu();

            Acts.Click(topMenuInstance.StudentsItem);
        }
Example #5
0
        //This method can return new instance of 'Locations' window so change it in case of need
        public void OpenLocationsWindow()
        {
            TopMenu topMenuInstance = MoveToTopMenu();

            Acts.Click(topMenuInstance.LocationsItem);
        }