Beispiel #1
0
        public void TestNavigationToMyProfilePage()
        {
            new LoginPage()
            .SetEmailOrUserName("*****@*****.**")
            .SetPassword("control123")
            .ValidateLoginButton()
            .ClickLoginButton();

            MyProfile.GoTo()
            .IsAccountDisplayed();

            Dashboard.GoTo()
            .IsStatisticsDisplayed();

            Issues.GoTo()
            .IsTableTitleDisplayed();

            SingOut.GoTo()
            .IsLoginPage();
        }