Ejemplo n.º 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();
        }
Ejemplo n.º 2
0
        public void ClickToProfileImage()
        {
            var profileImageButton = new Button(DivProfileImageLocator);

            profileImageButton.ActionsClick();
        }
Ejemplo n.º 3
0
        public void GoToLoginPage()
        {
            var btnGoToLoginPage = new Button(LocatorDivGoToLoginPage);

            btnGoToLoginPage.ActionsClick();
        }