/**
  * Checks a login attempt where only the password is typed,
  * but not the user login
  *
  * CTV3-954
  * http://comunidadeexpresso.serpro.gov.br/testlink/linkto.php?tprojectPrefix=CTV3&item=testcase&id=CTV3-954
  *
  * Input data:
  *
  * - valid.password: some random password
  */
 public function test_CTV3_954_NoUser()
 {
     $loginPage = new LoginPage($this);
     //load test data
     $VALID_PASSWORD = $this->getGlobalValue('user.1.password');
     $loginPage->typePassword($VALID_PASSWORD);
     $loginPage->clickLogin();
     $this->assertAlertTextEquals("Por favor, digite seu nome de usuário.", 'Problems with user not informed message');
     $this->dismissAlert();
 }