Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wcms_tests
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
wcms_tests
Commits
369b34e7
Commit
369b34e7
authored
3 months ago
by
Lily Yan
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-7189 Add switchToIFrame to make WcmsTestsImgInlineCest work
parent
461ca0a8
No related branches found
No related tags found
1 merge request
!83
ISTWCMS-7160 Fix service content type in testAutomaticListBlocksSettings in...
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
acceptance/WcmsTestsImgInlineCest.php
+9
-3
9 additions, 3 deletions
acceptance/WcmsTestsImgInlineCest.php
with
9 additions
and
3 deletions
acceptance/WcmsTestsImgInlineCest.php
+
9
−
3
View file @
369b34e7
...
...
@@ -49,6 +49,10 @@ class WcmsTestsImgInlineCest {
$i
->
waitForText
(
'Choose a block'
);
$i
->
click
(
'Copy text'
);
$i
->
waitForText
(
'Configure block'
);
// Switch the block form iframe.
$i
->
switchToIFrame
(
'iframe[class="lbim-dialog-iframe"]'
);
$i
->
waitForText
(
'Block description'
);
// Fill the title.
...
...
@@ -71,7 +75,7 @@ class WcmsTestsImgInlineCest {
// Click the submit button.
$i
->
waitForElementClickable
(
'input[id*="edit-actions-submit"]'
);
$i
->
click
(
'input[id*="edit-actions-submit"]'
);
$i
->
switchToIFrame
();
// Ensure that the block is on the page.
$i
->
waitForJS
(
"return document.readyState === 'complete';"
,
30
);
$i
->
waitForElement
(
".uw-copy-text div "
.
$block
.
" img"
,
30
);
...
...
@@ -79,12 +83,14 @@ class WcmsTestsImgInlineCest {
// Check that image's parent is a block.
$i
->
seeElement
(
".uw-copy-text div "
.
$block
.
" img"
,
[
'alt'
=>
'Inserted image in '
.
$block
.
' block'
]);
$i
->
waitForJS
(
"return document.readyState === 'complete';"
);
// Remove added block to avoid ambiguity in finding image.
$i
->
amOnPage
(
$path
.
'/layout/discard-changes'
);
$i
->
click
(
'#edit-submit'
);
$i
->
waitForJS
(
"return document.readyState === 'complete';"
,
30
);
$i
->
waitForText
(
"The changes to the layout have been discarded."
,
60
);
$i
->
switchToIFrame
();
$i
->
waitForJS
(
"return document.readyState === 'complete';"
);
$i
->
waitForText
(
"The changes to the layout have been discarded."
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment