Skip to content
Snippets Groups Projects
Commit ac597d22 authored by Lily Yan's avatar Lily Yan
Browse files

ISTWCMS-7189 Add switchtoIFrame to make WcmsTestsBlocksEmbedsCest work

parent aab1db68
No related branches found
No related tags found
1 merge request!83ISTWCMS-7160 Fix service content type in testAutomaticListBlocksSettings in...
<?php <?php
use Codeception\Util\Locator;
/** /**
* Class WcmsTestsBlocksEmbedsCest. * Class WcmsTestsBlocksEmbedsCest.
* *
...@@ -55,6 +53,9 @@ class WcmsTestsBlocksEmbedsCest { ...@@ -55,6 +53,9 @@ class WcmsTestsBlocksEmbedsCest {
$i->click('Google Maps'); $i->click('Google Maps');
$i->waitForText('Configure block'); $i->waitForText('Configure block');
// Switch the block form iframe.
$i->switchToIFrame('iframe[class="lbim-dialog-iframe"]');
// Get the settings for Google Maps. // Get the settings for Google Maps.
$title = $i->uwRandomString(); $title = $i->uwRandomString();
$gm_url = 'https://www.google.com/maps/embed?pb=' . $i->uwRandomString(); $gm_url = 'https://www.google.com/maps/embed?pb=' . $i->uwRandomString();
...@@ -67,8 +68,10 @@ class WcmsTestsBlocksEmbedsCest { ...@@ -67,8 +68,10 @@ class WcmsTestsBlocksEmbedsCest {
// Click on add block and ensure it is on the screen. // Click on add block and ensure it is on the screen.
$i->click('Add block'); $i->click('Add block');
$i->waitForElement(Locator::contains('div[class="uw-admin-label"]', 'Google Maps'));
$i->seeElement(Locator::contains('div[class="uw-admin-label"]', 'Google Maps')); $i->switchtoIFrame();
$i->waitForElement('div[class="uw-google-maps"]');
$i->seeElement('div[class="uw-google-maps"]');
// Check for elements on the page. // Check for elements on the page.
$i->see($title); $i->see($title);
...@@ -108,6 +111,9 @@ class WcmsTestsBlocksEmbedsCest { ...@@ -108,6 +111,9 @@ class WcmsTestsBlocksEmbedsCest {
$i->click('PowerBI'); $i->click('PowerBI');
$i->waitForText('Configure block'); $i->waitForText('Configure block');
// Switch the block form iframe.
$i->switchToIFrame('iframe[class="lbim-dialog-iframe"]');
// Get the settings for the block. // Get the settings for the block.
$title = $i->uwRandomString(); $title = $i->uwRandomString();
$url = 'https://app.powerbi.com/' . $i->uwRandomString(); $url = 'https://app.powerbi.com/' . $i->uwRandomString();
...@@ -118,8 +124,10 @@ class WcmsTestsBlocksEmbedsCest { ...@@ -118,8 +124,10 @@ class WcmsTestsBlocksEmbedsCest {
// Click on add block and ensure it is on the screen. // Click on add block and ensure it is on the screen.
$i->click('Add block'); $i->click('Add block');
$i->waitForElement(Locator::contains('div[class="uw-admin-label"]', 'PowerBI'));
$i->seeElement(Locator::contains('div[class="uw-admin-label"]', 'PowerBI')); $i->switchToIFrame();
$i->waitForElement('div[class="uw-powerbi"]');
$i->seeElement('div[class="uw-powerbi"]');
// Ensure elements are on the page. // Ensure elements are on the page.
$i->see($title); $i->see($title);
...@@ -159,6 +167,9 @@ class WcmsTestsBlocksEmbedsCest { ...@@ -159,6 +167,9 @@ class WcmsTestsBlocksEmbedsCest {
$i->click('Social Intents'); $i->click('Social Intents');
$i->waitForText('Configure block'); $i->waitForText('Configure block');
// Switch the block form iframe.
$i->switchToIFrame('iframe[class="lbim-dialog-iframe"]');
// Get the settings we are going to use. // Get the settings we are going to use.
$title = $i->uwRandomString(); $title = $i->uwRandomString();
$username = 'uwist'; $username = 'uwist';
...@@ -169,8 +180,10 @@ class WcmsTestsBlocksEmbedsCest { ...@@ -169,8 +180,10 @@ class WcmsTestsBlocksEmbedsCest {
// Click on add block and ensure it is on the screen. // Click on add block and ensure it is on the screen.
$i->click('Add block'); $i->click('Add block');
$i->waitForElement(Locator::contains('div[class="uw-admin-label"]', 'Social Intents'));
$i->seeElement(Locator::contains('div[class="uw-admin-label"]', 'Social Intents')); $i->switchToIFrame();
$i->waitForElement('div[class="uw-social-intents"]');
$i->seeElement('div[class="uw-social-intents"]');
// Ensure elements appear on the page. // Ensure elements appear on the page.
$i->see($title); $i->see($title);
...@@ -209,6 +222,9 @@ class WcmsTestsBlocksEmbedsCest { ...@@ -209,6 +222,9 @@ class WcmsTestsBlocksEmbedsCest {
$i->click('Tableau visualization'); $i->click('Tableau visualization');
$i->waitForText('Configure block'); $i->waitForText('Configure block');
// Switch the block form iframe.
$i->switchToIFrame('iframe[class="lbim-dialog-iframe"]');
// Get the settings we are going to use. // Get the settings we are going to use.
$title = $i->uwRandomString(); $title = $i->uwRandomString();
$height = rand(100, 1000); $height = rand(100, 1000);
...@@ -225,8 +241,10 @@ class WcmsTestsBlocksEmbedsCest { ...@@ -225,8 +241,10 @@ class WcmsTestsBlocksEmbedsCest {
// Click on add block and ensure it is on the screen. // Click on add block and ensure it is on the screen.
$i->click('Add block'); $i->click('Add block');
$i->waitForElement(Locator::contains('div[class="uw-admin-label"]', 'Tableau visualization'));
$i->seeElement(Locator::contains('div[class="uw-admin-label"]', 'Tableau visualization')); $i->switchToIFrame();
$i->waitForElement('div[class="uw-tableau"]');
$i->seeElement('div[class="uw-tableau"]');
// Ensure elements appear on the page. // Ensure elements appear on the page.
$i->see($title); $i->see($title);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment