def testLandingPage(self):
        """Test the landing page."""
        title = 'UfO Management Server'
        instruction = ('Click one of the links on the side to login and '
                       'administer the server.')

        self.driver.get(self.args.server_url)

        landing_page = LandingPage(self.driver)
        self.assertEquals(title, landing_page.GetTitle().text)
        self.assertEquals(instruction, landing_page.GetInstruction().text)
        self.assertIsNotNone(landing_page.GetSidebar())