summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2023-06-13 15:12:38 +0200
committerjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2023-06-13 15:21:09 +0200
commit83f2cc2f05ed30229ffcc0a42afb6398e9047758 (patch)
treed9ef615bc9c55dc7b32cf04356b06a2bdfd10a92 /tests
parent34c98566df507ea69794355180c8edbcc2418c6f (diff)
downloadnextcloud-server-83f2cc2f05ed30229ffcc0a42afb6398e9047758.tar.gz
nextcloud-server-83f2cc2f05ed30229ffcc0a42afb6398e9047758.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.php6
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");
}