diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-09-04 10:36:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-04 10:36:04 +0200 |
commit | 2fdf946daed8e7086376fd704e7a491ab0cb697a (patch) | |
tree | 8bc538a18cea014b9047ab6437dcdd6361e26d36 /tests | |
parent | 4be862f7d76ea70748002c42c591130544393cec (diff) | |
parent | 1993984769e4187f0229c31c46c94257a3bcb9b7 (diff) | |
download | nextcloud-server-2fdf946daed8e7086376fd704e7a491ab0cb697a.tar.gz nextcloud-server-2fdf946daed8e7086376fd704e7a491ab0cb697a.zip |
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.php | 8 |
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"); - } } /** |