예제 #1
0
        public void LogIn(string username, string password)
        {
            var txtBoxUserName = new TextBox(TxtUsernameLocator);

            txtBoxUserName.SetText(username);
            var txtBoxPassword = new TextBox(TxtPasswordLocator);

            txtBoxPassword.SetText(password);
            var btnLogin = new Button(BtnLoginLocator);

            btnLogin.ActionsClick();
        }
예제 #2
0
        public void ClickToProfileImage()
        {
            var profileImageButton = new Button(DivProfileImageLocator);

            profileImageButton.ActionsClick();
        }
예제 #3
0
        public void GoToLoginPage()
        {
            var btnGoToLoginPage = new Button(LocatorDivGoToLoginPage);

            btnGoToLoginPage.ActionsClick();
        }