From 40c3c5e8e9dbd66a76ef4b6ff15a53e3035a9704 Mon Sep 17 00:00:00 2001
From: Anja Leichsenring <aleichsenring@ab-softlab.de>
Date: Thu, 5 Mar 2020 18:37:50 +0100
Subject: [PATCH] [BUGFIX] Use iFrame name in Acceptance Test instead id

The test used to use the iFrame id, but some updated dependency
caused this misuse to fail. Using the proper name attribute for
navigation fixes the test.

Resolves: #90650
Releases: master
Change-Id: I379d5b44e1f20e53120f2b066af739716e0b5726
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63554
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Georg Ringer <georg.ringer@gmail.com>
Reviewed-by: Georg Ringer <georg.ringer@gmail.com>
---
 .../Backend/FormEngine/FalMetadataInheritanceCest.php           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/typo3/sysext/core/Tests/Acceptance/Backend/FormEngine/FalMetadataInheritanceCest.php b/typo3/sysext/core/Tests/Acceptance/Backend/FormEngine/FalMetadataInheritanceCest.php
index 2222bed445ca..5b17110cf068 100644
--- a/typo3/sysext/core/Tests/Acceptance/Backend/FormEngine/FalMetadataInheritanceCest.php
+++ b/typo3/sysext/core/Tests/Acceptance/Backend/FormEngine/FalMetadataInheritanceCest.php
@@ -86,7 +86,7 @@ class FalMetadataInheritanceCest
         $I->amGoingTo('Change default metadata');
         $I->switchToMainFrame();
         $I->click('Filelist');
-        $I->switchToIFrame('typo3-navigationContainerIframe');
+        $I->switchToIFrame('nav_frame');
         $I->waitForText('fileadmin/ (auto-created)');
         $I->click('styleguide');
 
-- 
GitLab