diff options
author | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-05-25 11:49:24 +0200 |
---|---|---|
committer | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-05-25 11:49:24 +0200 |
commit | 94e1a429e58536cdff5fae9b423818ff59f80b1b (patch) | |
tree | 33494d1fa4331a6771faef7955c05853647717c1 /tests | |
parent | b6d734375478c791a146e2ec5ad61ac1a699e436 (diff) | |
download | nextcloud-server-94e1a429e58536cdff5fae9b423818ff59f80b1b.tar.gz nextcloud-server-94e1a429e58536cdff5fae9b423818ff59f80b1b.zip |
Revert "Fix table view"
This reverts commit cb852ef6
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/acceptance/features/bootstrap/UsersSettingsContext.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/acceptance/features/bootstrap/UsersSettingsContext.php b/tests/acceptance/features/bootstrap/UsersSettingsContext.php index ac516089c11..33c47850202 100644 --- a/tests/acceptance/features/bootstrap/UsersSettingsContext.php +++ b/tests/acceptance/features/bootstrap/UsersSettingsContext.php @@ -82,7 +82,7 @@ class UsersSettingsContext implements Context, ActorAwareInterface { * @return Locator */ public static function rowForUser($user) { - return Locator::forThe()->css("table.user-list-grid tr.row[data-id=$user]")-> + return Locator::forThe()->css("div.user-list-grid div.row[data-id=$user]")-> describedAs("Row for user $user in Users Settings"); } @@ -144,7 +144,7 @@ class UsersSettingsContext implements Context, ActorAwareInterface { * @return Locator */ public static function theColumn($column) { - return Locator::forThe()->xpath("//table[@class='user-list-grid']//*[normalize-space() = '$column']")-> + return Locator::forThe()->xpath("//div[@class='user-list-grid']//div[normalize-space() = '$column']")-> describedAs("The $column column in Users Settings"); } @@ -170,7 +170,7 @@ class UsersSettingsContext implements Context, ActorAwareInterface { * @return Locator */ public static function editModeOn($user) { - return Locator::forThe()->css("table.user-list-grid tr.row.row--editable[data-id=$user]")-> + return Locator::forThe()->css("div.user-list-grid div.row.row--editable[data-id=$user]")-> describedAs("I see the edit mode is on for the user $user in Users Settings"); } |