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
20ca00c1
Commit
20ca00c1
authored
3 months ago
by
Eric Bremner
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-7160: Fix testListParity test
parent
c2b27660
No related branches found
Branches containing commit
No related tags found
2 merge requests
!83
ISTWCMS-7160 Fix service content type in testAutomaticListBlocksSettings in...
,
!81
ISTWCMS-7160 Make existing Codeception tests pass
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
acceptance/WcmsTestsBlocksListingsCest.php
+14
-13
14 additions, 13 deletions
acceptance/WcmsTestsBlocksListingsCest.php
with
14 additions
and
13 deletions
acceptance/WcmsTestsBlocksListingsCest.php
+
14
−
13
View file @
20ca00c1
...
...
@@ -447,26 +447,26 @@ class WcmsTestsBlocksListingsCest {
// Navigate to layout builder.
$i
->
amOnPage
(
'/testpage/layout'
);
$i
->
waitforText
(
'Edit layout for testpage'
,
30
);
$i
->
waitforText
(
'Edit layout for testpage'
);
// Add an automatic list block.
$i
->
click
(
'Add block'
);
$i
->
waitForText
(
'Choose a block'
,
30
);
$i
->
waitForText
(
'Choose a block'
);
$i
->
click
(
'Automatic list'
);
$i
->
waitForText
(
'Configure block'
,
30
);
$i
->
waitForText
(
'Configure block'
);
$i
->
fillField
(
'input[name="settings[label]"]'
,
'title'
);
$i
->
selectOption
(
'settings[content_type]'
,
$content_type
);
// Create a block id and add the block.
$i
->
fillField
(
'input[name="settings[layout_builder_id]"]'
,
'automatic'
.
$machine_name
);
$i
->
click
(
'Add block'
);
$i
->
waitForElement
(
'.uw-admin-label'
,
30
);
$i
->
waitForElement
(
'.uw-admin-label'
);
// Add an manual list block.
$i
->
click
(
'Add block'
);
$i
->
waitForText
(
'Choose a block'
,
30
);
$i
->
waitForText
(
'Choose a block'
);
$i
->
click
(
'Manual list'
);
$i
->
waitForText
(
'Configure block'
,
30
);
$i
->
waitForText
(
'Configure block'
);
$i
->
fillField
(
'input[name="settings[label]"]'
,
'title'
);
$i
->
selectOption
(
'settings[content_type]'
,
$content_type
);
$i
->
fillField
(
'input[name="settings['
.
$machine_name
.
'][items_fieldset]['
.
$machine_name
.
'_ids][0][id]"]'
,
'test'
.
$machine_name
);
...
...
@@ -474,12 +474,12 @@ class WcmsTestsBlocksListingsCest {
// Create a block id and add the block.
$i
->
fillField
(
'input[name="settings[layout_builder_id]"]'
,
'manual'
.
$machine_name
);
$i
->
click
(
'Add block'
);
$i
->
waitForText
(
'Edit layout for testpage'
,
30
);
$i
->
waitForText
(
'Edit layout for testpage'
);
// Save the layout.
$i
->
scrollTo
([
'css'
=>
'input[value="Save layout"]'
],
100
,
0
);
$i
->
click
(
'Save layout'
);
$i
->
waitForText
(
'The layout override has been saved.'
,
30
);
$i
->
waitForText
(
'The layout override has been saved.'
);
// Create a reference image using the automatic list.
// Since there is no existing image with the name $machine_name,
...
...
@@ -1196,13 +1196,14 @@ class WcmsTestsBlocksListingsCest {
$i
->
waitForText
(
'Are you sure you want to remove section 1?'
);
$i
->
click
(
'Remove'
);
$i
->
waitForElementNotVisible
(
'.layout-builder__region'
);
$i
->
click
(
'.layout-builder__link--add'
);
$i
->
waitForText
(
'One column'
,
30
);
$i
->
waitForText
(
'Add section'
);
$i
->
click
(
'Add section'
);
$i
->
waitForText
(
'One column'
);
$i
->
click
(
'One column'
);
$i
->
waitForText
(
'Configure section'
,
30
);
$i
->
waitForText
(
'Add section'
,
30
);
$i
->
waitForText
(
'Configure section'
);
$i
->
waitForText
(
'Add section'
);
$i
->
click
(
'input[value="Add section"]'
);
$i
->
waitForText
(
'Add block'
,
30
);
$i
->
waitForText
(
'Add block'
);
}
/**
...
...
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