summaryrefslogtreecommitdiffstats
path: root/tests/acceptance
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-04-10 17:07:14 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-04-10 17:07:14 +0200
commit0f135c7bd6096eb2895b335d54d3a13a272f782b (patch)
treef28853c90bd8cf1081e05f79c123e898674f9d3d /tests/acceptance
parente24818f6bbde7df61674b56278a4293227d04aaf (diff)
downloadnextcloud-server-0f135c7bd6096eb2895b335d54d3a13a272f782b.tar.gz
nextcloud-server-0f135c7bd6096eb2895b335d54d3a13a272f782b.zip
Bump acceptance tests
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'tests/acceptance')
-rw-r--r--tests/acceptance/features/bootstrap/AppsManagementContext.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/acceptance/features/bootstrap/AppsManagementContext.php b/tests/acceptance/features/bootstrap/AppsManagementContext.php
index b9896305182..2fa089e3cba 100644
--- a/tests/acceptance/features/bootstrap/AppsManagementContext.php
+++ b/tests/acceptance/features/bootstrap/AppsManagementContext.php
@@ -60,7 +60,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");
}
@@ -68,7 +68,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");
}
@@ -76,7 +76,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");
}
@@ -84,7 +84,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");
}