mirror of
https://github.com/nextcloud/server.git
synced 2026-03-01 13:00:44 -05:00
Merge pull request #37074 from nextcloud/backport/37069/stable26
[stable26] fix(CI): Fix acceptance test password field selector after @nextcloud…
This commit is contained in:
commit
f7fa2fd974
1 changed files with 2 additions and 2 deletions
|
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue