Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-09-04 11:36:04 +0300
committerGitHub <noreply@github.com>2019-09-04 11:36:04 +0300
commit2fdf946daed8e7086376fd704e7a491ab0cb697a (patch)
tree8bc538a18cea014b9047ab6437dcdd6361e26d36 /tests
parent4be862f7d76ea70748002c42c591130544393cec (diff)
parent1993984769e4187f0229c31c46c94257a3bcb9b7 (diff)
Merge pull request #16454 from nextcloud/bugfix/noid/sharelink-shouldnt-open-menu-automatically
Dont show menu automatically when share link is clicked
Diffstat (limited to 'tests')
-rw-r--r--tests/acceptance/features/bootstrap/FilesAppSharingContext.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/acceptance/features/bootstrap/FilesAppSharingContext.php b/tests/acceptance/features/bootstrap/FilesAppSharingContext.php
index 4ae8659d2d1..5353f05c110 100644
--- a/tests/acceptance/features/bootstrap/FilesAppSharingContext.php
+++ b/tests/acceptance/features/bootstrap/FilesAppSharingContext.php
@@ -249,14 +249,6 @@ class FilesAppSharingContext implements Context, ActorAwareInterface {
$this->actor->find(FileListContext::shareActionForFile(FilesAppContext::currentSectionMainView(), $fileName), 10)->click();
$this->actor->find(self::shareLinkAddNewButton(), 5)->click();
-
- // Wait until the menu was opened after the share creation to continue.
- if (!WaitFor::elementToBeEventuallyShown(
- $this->actor,
- self::shareLinkMenu(),
- $timeout = 5 * $this->actor->getFindTimeoutMultiplier())) {
- PHPUnit_Framework_Assert::fail("The share link menu is not open yet after $timeout seconds");
- }
}
/**