Beispiel #1
0
        public void ShouldBeAbleToSearchForHotels()
        {
            //Arrange
            var testdata = new HotelsTdo {
                Locality           = "Indiranagar, Bangalore",
                TravellerSelection = "1 room, 2 adults"
            };

            var hotelsView = new HotelsView(BrowserContext.CurrentDriver);

            //Act
            bool actual = hotelsView.SearchHotels(testdata);

            //Assert
            Assert.True(actual, "Search Result not found");
        }