]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix(CI): Fix acceptance test password field selector after @nextcloud/vue lib update 37069/head
authorJoas Schilling <coding@schilljs.com>
Tue, 7 Mar 2023 08:27:06 +0000 (09:27 +0100)
committerJoas Schilling <coding@schilljs.com>
Tue, 7 Mar 2023 08:34:47 +0000 (09:34 +0100)
Signed-off-by: Joas Schilling <coding@schilljs.com>
tests/acceptance/features/bootstrap/FilesAppSharingContext.php

index b0f1fbe930b52fce017aaa4afee4c9ebc41acf56..3c2b4a8633fb6d9b80dcb04c36d721f61f1b6404 100644 (file)
@@ -303,7 +303,7 @@ class FilesAppSharingContext implements Context, ActorAwareInterface {
         * @return Locator
         */
        public static function passwordProtectField($shareLinkMenuTriggerElement) {
-               return Locator::forThe()->css(".share-link-password input.action-input__input")->descendantOf(self::shareLinkMenu($shareLinkMenuTriggerElement))->
+               return Locator::forThe()->css(".share-link-password input.input-field__input")->descendantOf(self::shareLinkMenu($shareLinkMenuTriggerElement))->
                                describedAs("Password protect field in the details view in Files app");
        }
 
@@ -311,7 +311,7 @@ class FilesAppSharingContext implements Context, ActorAwareInterface {
         * @return Locator
         */
        public static function disabledPasswordProtectField($shareLinkMenuTriggerElement) {
-               return Locator::forThe()->css(".share-link-password input.action-input__input[disabled]")->descendantOf(self::shareLinkMenu($shareLinkMenuTriggerElement))->
+               return Locator::forThe()->css(".share-link-password input.input-field__input[disabled]")->descendantOf(self::shareLinkMenu($shareLinkMenuTriggerElement))->
                                describedAs("Disabled password protect field in the details view in Files app");
        }