diff options
author | Christopher Ng <chrng8@gmail.com> | 2022-11-18 21:45:23 +0000 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2022-11-24 01:01:21 +0000 |
commit | d5969004100282ea100031005cef29c438d6a60f (patch) | |
tree | 585500706bd01d9b204162b04a8d6a18edb5eed4 /tests | |
parent | 222b8942af70a919dd3f2422927ed43e2fe19757 (diff) | |
download | nextcloud-server-d5969004100282ea100031005cef29c438d6a60f.tar.gz nextcloud-server-d5969004100282ea100031005cef29c438d6a60f.zip |
Add label to sharing search field
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/acceptance/features/bootstrap/FilesAppSharingContext.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/acceptance/features/bootstrap/FilesAppSharingContext.php b/tests/acceptance/features/bootstrap/FilesAppSharingContext.php index fd85315f49f..95398423e3b 100644 --- a/tests/acceptance/features/bootstrap/FilesAppSharingContext.php +++ b/tests/acceptance/features/bootstrap/FilesAppSharingContext.php @@ -41,7 +41,7 @@ class FilesAppSharingContext implements Context, ActorAwareInterface { * @return Locator */ public static function shareWithInput() { - return Locator::forThe()->css(".sharing-input .multiselect__input")-> + return Locator::forThe()->css(".sharing-search__input .multiselect__input")-> descendantOf(FilesAppContext::detailsView())-> describedAs("Share with input in the details view in Files app"); } @@ -50,7 +50,7 @@ class FilesAppSharingContext implements Context, ActorAwareInterface { * @return Locator */ public static function shareWithInputResults() { - return Locator::forThe()->css(".sharing-input .multiselect__content-wrapper")-> + return Locator::forThe()->css(".sharing-search__input .multiselect__content-wrapper")-> descendantOf(FilesAppContext::detailsView())-> describedAs("Share with input results list in the details view in Files app"); } |