예제 #1
0
        public void TextBox()
        {
            _elements.TextBox.Click();
            var user = TextBoxFactory.Create();

            _elements.FillTextBox(_elements.UserName, _elements.UserEmail, _elements.CurrentAddress, user);
            _elements.ScrollTo(_elements.TextBoxSubmit).Click();

            StringAssert.Contains("Kuku Buku", _elements.OutPutText.Text);
        }
예제 #2
0
        public void FillOneOfPannels(string pannel)
        {
            _elements.TextBox.Click();

            var user = TextBoxFactory.Create();

            _elements.FillOne(_elements.FillPannel(pannel), user, pannel);
            _elements.ScrollTo(_elements.TextBoxSubmit).Click();

            StringAssert.Contains("*****@*****.**", _elements.OutPutText.Text);
        }