Fix isLoggedIn selenium test base function

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2020-05-22 23:33:27 +02:00
parent 36b2f6e244
commit 1667bd648e
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -592,11 +592,11 @@ abstract class TestBase extends TestCase
*
* @return bool Where or not user is logged in
*/
public function isLoggedIn()
public function isLoggedIn(): bool
{
return $this->isElementPresent(
'xpath',
'//*[@id="server-breadcrumb"]/a[1]'
'//*[@class="navigationbar"]'
);
}