Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-07-18 18:58:05 +0300
committerCarl Schwan <carl@carlschwan.eu>2022-07-27 11:43:21 +0300
commit253118298dbac78d13c5333279def8bbd3ad555c (patch)
treed684b43694cf5cdfa70fa528fbeaba89e65f5b66 /tests/acceptance
parent5a236762b8e6b5f09a0c65f5840416bbad2d159a (diff)
Redesign guest pages for better accessibility
- Use white box and put content on it - Improve focus indicator Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'tests/acceptance')
-rw-r--r--tests/acceptance/features/bootstrap/LoginPageContext.php24
1 files changed, 6 insertions, 18 deletions
diff --git a/tests/acceptance/features/bootstrap/LoginPageContext.php b/tests/acceptance/features/bootstrap/LoginPageContext.php
index 7502b143718..3fb06abb235 100644
--- a/tests/acceptance/features/bootstrap/LoginPageContext.php
+++ b/tests/acceptance/features/bootstrap/LoginPageContext.php
@@ -38,34 +38,22 @@ class LoginPageContext implements Context, ActorAwareInterface {
*/
private $filesAppContext;
- /**
- * @return Locator
- */
- public static function userNameField() {
+ public static function userNameField(): Locator {
return Locator::forThe()->field("user")->
describedAs("User name field in Login page");
}
- /**
- * @return Locator
- */
- public static function passwordField() {
+ public static function passwordField(): Locator {
return Locator::forThe()->field("password")->
describedAs("Password field in Login page");
}
- /**
- * @return Locator
- */
- public static function loginButton() {
- return Locator::forThe()->css(".submit-wrapper .submit-wrapper__input")->
+ public static function loginButton(): Locator {
+ return Locator::forThe()->css(".button-vue[type='submit']")->
describedAs("Login button in Login page");
}
- /**
- * @return Locator
- */
- public static function wrongPasswordMessage() {
+ public static function wrongPasswordMessage(): Locator {
return Locator::forThe()->xpath("//*[@class = 'warning wrongPasswordMsg' and normalize-space() = 'Wrong username or password.']")->
describedAs("Wrong password message in Login page");
}
@@ -81,7 +69,7 @@ class LoginPageContext implements Context, ActorAwareInterface {
/**
* @When I log in with user :user and password :password
*/
- public function iLogInWithUserAndPassword($user, $password) {
+ public function iLogInWithUserAndPassword(string $user, string $password): void {
$this->actor->find(self::userNameField(), 10)->setValue($user);
$this->actor->find(self::passwordField())->setValue($password);
$this->actor->find(self::loginButton())->click();