public void GetInfoAboutStation()
        {
            Driver.Manage().Timeouts().ImplicitWait         = TimeSpan.FromSeconds(10);
            StationAndTrainInfoPage stationAndTrainInfoPage = new MainPage(Driver)
                                                              .GoToStationAndTrainInfoPage()
                                                              .InputStationAndSearch(RouteCreator.InputStationName());

            Assert.AreEqual("https://www.nationalrail.co.uk/stations/PAD/details.html", Driver.Url);
        }