itemengine-cypress-automation 1.0.446 → 1.0.448-IEI-6684-thinksphere-cypress-fixes-6175be0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -230,7 +230,8 @@ describe('Create item : ThinkSphere Question - Plan Phases Section',() => {
230
230
  });
231
231
  });
232
232
 
233
- it('When the user hovers over \'Volume control\' button, volume control settings should open and by default it should be set to full volume and on hovering away from the button, the volume sliders should disappear', () => {
233
+ //skipping as it is a flaky test.
234
+ it.skip('When the user hovers over \'Volume control\' button, volume control settings should open and by default it should be set to full volume and on hovering away from the button, the volume sliders should disappear', () => {
234
235
  thinkSpherePage.steps.hoverOnVolumeControlButton();
235
236
  utilities.verifyElementVisibilityState(thinkSpherePage.volumeControlSlider(), 'visible');
236
237
  thinkSpherePage.steps.verifyVolumeOfPlaybackPlayer('100');
@@ -1694,6 +1694,11 @@ const steps = {
1694
1694
  verifyWhiteBoardPlayerVolumeSliderVisible: () => {
1695
1695
  thinkSpherePage.whiteboardVolumeSlider()
1696
1696
  .should('be.visible');
1697
+ },
1698
+
1699
+ verifyDisabledAddSentenceStarterButtonTooltip: () => {
1700
+ thinkSpherePage.planSentenceStarterAddItemButton().parent()
1701
+ .verifyTooltip('Maximum 15 items can be added');
1697
1702
  }
1698
1703
  };
1699
1704
 
@@ -2240,6 +2245,11 @@ const tests = {
2240
2245
  });
2241
2246
 
2242
2247
  it('When user upload a file whose extension is not supported then an error message should be displayed', () => {
2248
+ thinkSpherePage.videoLinkComponent()
2249
+ .within(() => {
2250
+ thinkSpherePage.deleteVideoButton()
2251
+ .click();
2252
+ });
2243
2253
  thinkSpherePage.videoLinkComponent()
2244
2254
  .within(() => {
2245
2255
  thinkSpherePage.uploadVideoLinkButton()
@@ -2619,7 +2629,9 @@ const tests = {
2619
2629
  cy.get(`[class="${content}"]`).scrollIntoView().should('exist').and('be.visible');
2620
2630
  });
2621
2631
  thinkSpherePage.steps.clickOnReviewTab();
2632
+ cy.wait(1000);
2622
2633
  thinkSpherePage.steps.clickOnSolveTab();
2634
+ cy.wait(1000);
2623
2635
  }
2624
2636
  }
2625
2637
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.446",
3
+ "version": "1.0.448-IEI-6684-thinksphere-cypress-fixes-6175be0.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -52,4 +52,4 @@
52
52
  "devDependencies": {
53
53
  "@applitools/eyes-cypress": "^3.47.0"
54
54
  }
55
- }
55
+ }