diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-04-06 13:16:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-06 13:16:26 +0200 |
commit | 2a2ab1b871d3b262c9d17a0ebb12e10d12c1e9f2 (patch) | |
tree | 56b7caf2d54851f61cd8fab2be512f2507ed7c76 /tests | |
parent | 4a6e31c91dcbdc2cfd2cae44bf64243c5005fa13 (diff) | |
parent | 5598d30ef1bf1f4b4dc763b9528cf8bc2b6e34ed (diff) | |
download | nextcloud-server-2a2ab1b871d3b262c9d17a0ebb12e10d12c1e9f2.tar.gz nextcloud-server-2a2ab1b871d3b262c9d17a0ebb12e10d12c1e9f2.zip |
Merge pull request #9084 from nextcloud/public-page-template-extend
Public page template enhancements
Diffstat (limited to 'tests')
-rw-r--r-- | tests/acceptance/features/bootstrap/FilesSharingAppContext.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/acceptance/features/bootstrap/FilesSharingAppContext.php b/tests/acceptance/features/bootstrap/FilesSharingAppContext.php index 4f9dabc60e6..61357142ae4 100644 --- a/tests/acceptance/features/bootstrap/FilesSharingAppContext.php +++ b/tests/acceptance/features/bootstrap/FilesSharingAppContext.php @@ -64,7 +64,7 @@ class FilesSharingAppContext implements Context, ActorAwareInterface { * @return Locator */ public static function shareMenu() { - return Locator::forThe()->id("share-menu")-> + return Locator::forThe()->id("header-actions-menu")-> describedAs("Share menu in Shared file page"); } @@ -90,7 +90,7 @@ class FilesSharingAppContext implements Context, ActorAwareInterface { * @return Locator */ public static function saveItemInShareMenu() { - return Locator::forThe()->id("save")-> + return Locator::forThe()->id("save-external-share")-> descendantOf(self::shareMenu())-> describedAs("Save item in Share menu in Shared file page"); } |