Beispiel #1
0
        public void CheckifDestinationTextBoxExists()
        {
            CheckIfTextFieldExists destinationTextbox = new CheckIfTextFieldExists();

            destinationTextbox.url  = "https://www.momondo.co.uk/";
            destinationTextbox.name = "destination";

            bool result = destinationTextbox.checkIfTextFieldExists();

            Assert.That(result == true);
        }
Beispiel #2
0
        public void CheckifOriginTextBoxExists()
        {
            CheckIfTextFieldExists originTextbox = new CheckIfTextFieldExists();

            originTextbox.url  = "https://www.momondo.co.uk/";
            originTextbox.name = "origin";

            bool result = originTextbox.checkIfTextFieldExists();

            Assert.That(result == true);
        }