summaryrefslogtreecommitdiffstats
path: root/tests/acceptance
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2023-04-06 12:07:33 +0200
committerJohn Molakvoæ <skjnldsv@protonmail.com>2023-04-06 15:43:30 +0200
commit5b3900e84911b0a10160b94962e1af3c292223ab (patch)
treee76196ec1540e4c7ff91bda01dd74daf6f6c73b1 /tests/acceptance
parentea3e77d6b91e86fd14e40dc1b68ed8a887c93c2c (diff)
downloadnextcloud-server-5b3900e84911b0a10160b94962e1af3c292223ab.tar.gz
nextcloud-server-5b3900e84911b0a10160b94962e1af3c292223ab.zip
fix(tests): acceptance
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'tests/acceptance')
-rw-r--r--tests/acceptance/features/bootstrap/FilesAppContext.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/acceptance/features/bootstrap/FilesAppContext.php b/tests/acceptance/features/bootstrap/FilesAppContext.php
index b4b6e72e5b5..ec1f89e1462 100644
--- a/tests/acceptance/features/bootstrap/FilesAppContext.php
+++ b/tests/acceptance/features/bootstrap/FilesAppContext.php
@@ -73,7 +73,7 @@ class FilesAppContext implements Context, ActorAwareInterface {
* @return Locator
*/
public static function currentSectionMainView() {
- return Locator::forThe()->xpath("//*[starts-with(@id, 'app-content-') and not(contains(concat(' ', normalize-space(@class), ' '), ' hidden '))]")->
+ return Locator::forThe()->xpath("//*[starts-with(@id, 'app-content-') and not(@id = 'app-content-vue') and not(contains(concat(' ', normalize-space(@class), ' '), ' hidden '))]")->
describedAs("Current section main view in Files app");
}