@Test
 public void Login02() throws InterruptedException {
   LoginPage = new LoginPage(driver);
   LoginPage.clickLogYourSelfLink();
   LoginPage.clickSignIn();
   // Fluent Wait
   /*
    * Wait<WebDriver> wait = new FluentWait<WebDriver>(driver) //Wait
    * for the condition .withTimeout(30, TimeUnit.SECONDS) // which to
    * check for the condition with interval of 5 seconds.
    * .pollingEvery(5, TimeUnit.SECONDS) //Which will ignore the
    * NoSuchElementException .ignoring(NoSuchElementException.class);
    */
   Common.verifyText(" Error: No match for E-Mail Address and/or Password.");
 }