From a65333f3bbb500c65e98bef958f07accbc598cb7 Mon Sep 17 00:00:00 2001 From: Clorith Date: Wed, 28 Jun 2023 10:47:26 +0000 Subject: [PATCH] Build/Test Tools: Switch frame container when testing block editor output. When the block editor is rendered, the editor content is wrapped inside an iframe tag; The tool used to run End to End (E2E) tests, Puppeteer, puts all such frames into separate containers, but the initial test was checking if the parent page had a given selector, which was leading to timeout failures. By actively switching the container to the iframe wrapper,and setting it as the active context, it helps ensure the expected selectors can be found, and its content can be verrified. See #58592. Props joemcgill, SergeyBiryukov, talldanwp, oglekler, Clorith. Built from https://develop.svn.wordpress.org/trunk@56089 git-svn-id: http://core.svn.wordpress.org/trunk@55601 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index bd5ec08b9f..42ce00f550 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-56088'; +$wp_version = '6.3-alpha-56089'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.