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
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2018-10-01 12:02:12 +0300
committerJan-Christoph Borchardt <hey@jancborchardt.net>2018-10-01 12:02:12 +0300
commit9b8e884b19175a304e00fdd1371c9a524c3afbfc (patch)
tree2e8e2ba063192dd06752bd1ce4e40ebfaa6bfc8a /tests/acceptance
parente4f3098492c905376fff106308fdadf9af5e1492 (diff)
Change wording of 'Copy URL' to more understandable 'Copy link'
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'tests/acceptance')
-rw-r--r--tests/acceptance/features/bootstrap/FilesAppContext.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/acceptance/features/bootstrap/FilesAppContext.php b/tests/acceptance/features/bootstrap/FilesAppContext.php
index ab9fc8fe29c..408995b9a83 100644
--- a/tests/acceptance/features/bootstrap/FilesAppContext.php
+++ b/tests/acceptance/features/bootstrap/FilesAppContext.php
@@ -227,9 +227,9 @@ class FilesAppContext implements Context, ActorAwareInterface {
* @return Locator
*/
public static function copyUrlMenuItem() {
- return Locator::forThe()->xpath("//a[normalize-space() = 'Copy URL']")->
+ return Locator::forThe()->xpath("//a[normalize-space() = 'Copy link']")->
descendantOf(self::shareLinkMenu())->
- describedAs("Copy URL menu item in the share link menu in the details view in Files app");
+ describedAs("Copy link menu item in the share link menu in the details view in Files app");
}
/**