diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2020-04-11 08:18:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-11 08:18:14 +0200 |
commit | 97de425a171adf9194dae75eede74cf9f3356cc8 (patch) | |
tree | 4f5ce313bfb1081bd425d6b828f21357ea3f8389 /tests/acceptance | |
parent | de52e1cda7b74b321224fe3b6443f19d12034e60 (diff) | |
parent | 0f135c7bd6096eb2895b335d54d3a13a272f782b (diff) | |
download | nextcloud-server-97de425a171adf9194dae75eede74cf9f3356cc8.tar.gz nextcloud-server-97de425a171adf9194dae75eede74cf9f3356cc8.zip |
Merge pull request #20419 from nextcloud/dependabot/npm_and_yarn/various
Bump p-limit from 2.2.2 to 2.3.0, @nextcloud/auth from 1.2.2 to 1.2.3, @babel/preset-env from 7.8.7 to 7.9.5, @nextcloud/event-bus from 1.1.3 to 1.1.4, @nextcloud/password-confirmation from 1.0.0 to 1.0.1, @nextcloud/l10n from 1.2.2 to 1.2.3, @nextcloud/initial-state from 1.1.1 to 1.1.2, core-js from 3.6.4 to 3.6.5 …
Diffstat (limited to 'tests/acceptance')
-rw-r--r-- | tests/acceptance/features/bootstrap/AppsManagementContext.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/acceptance/features/bootstrap/AppsManagementContext.php b/tests/acceptance/features/bootstrap/AppsManagementContext.php index fea322a0af5..1e36ac72ef6 100644 --- a/tests/acceptance/features/bootstrap/AppsManagementContext.php +++ b/tests/acceptance/features/bootstrap/AppsManagementContext.php @@ -59,7 +59,7 @@ class AppsManagementContext implements Context, ActorAwareInterface { * @return Locator */ public static function bundleButton($bundle) { - return Locator::forThe()->xpath("//div[@id='app-content']//div[@class='apps-header']/h2[normalize-space() = '$bundle']/input")-> + return Locator::forThe()->xpath("//main[@id='app-content']//div[@class='apps-header']/h2[normalize-space() = '$bundle']/input")-> describedAs("Button to enable / disable bundles"); } @@ -67,7 +67,7 @@ class AppsManagementContext implements Context, ActorAwareInterface { * @return Locator */ public static function rowForApp($app) { - return Locator::forThe()->xpath("//div[@id='app-content']//div[@class='app-name'][normalize-space() = '$app']/..")-> + return Locator::forThe()->xpath("//main[@id='app-content']//div[@class='app-name'][normalize-space() = '$app']/..")-> describedAs("Row for app $app in Apps Management"); } @@ -75,7 +75,7 @@ class AppsManagementContext implements Context, ActorAwareInterface { * @return Locator */ public static function emptyAppList() { - return Locator::forThe()->xpath("//div[@id='app-content']//div[@id='apps-list-empty']")-> + return Locator::forThe()->xpath("//main[@id='app-content']//div[@id='apps-list-empty']")-> describedAs("Empty apps list view"); } @@ -83,7 +83,7 @@ class AppsManagementContext implements Context, ActorAwareInterface { * @return Locator */ public static function appEntries() { - return Locator::forThe()->xpath("//div[@id='app-content']//div[@class='section']")-> + return Locator::forThe()->xpath("//main[@id='app-content']//div[@class='section']")-> describedAs("Entries in apps list"); } |