itemengine-cypress-automation 1.0.598-IEI-7162-Improve-cypress-coverage-for-number-line-79480ee.0 → 1.0.599-IEI-4213-b4ff6b7.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.
@@ -19,10 +19,10 @@ describe('Preview of Audio response for compact audio recorder style', () => {
19
19
  audioResponsePage.steps.switchToPreviewTab();
20
20
  });
21
21
 
22
- it('If user selects \'Compact\' option from \'Audio recorder style\' toggle buttons, then \'Record\' button and \'Click the button to start recording...\' help text should be displayed in the preview tab', () => {
22
+ it('If user selects \'Compact\' option from \'Audio recorder style\' toggle buttons, then \'Record\' button and \'Click the button to start recording\' help text should be displayed in the preview tab', () => {
23
23
  utilities.verifyElementVisibilityState(audioResponsePage.compactPreviewRecordButton(), 'visible');
24
24
  utilities.verifyInnerText(audioResponsePage.compactPreviewRecordButton(), 'Record');
25
- utilities.verifyInnerText(audioResponsePage.compactPreviewRecordingHelpText(), 'Click the button to start recording...');
25
+ utilities.verifyInnerText(audioResponsePage.compactPreviewRecordingHelpText(), 'Click the button to start recording');
26
26
  utilities.verifyElementVisibilityState(audioResponsePage.compactPreviewRecordingHelpText(), 'visible');
27
27
  });
28
28
 
@@ -57,8 +57,8 @@ describe('Create item page - Audio response: Preview contents', () => {
57
57
  utilities.verifyElementVisibilityState(audioResponsePage.questionInstructionsText(), 'visible');
58
58
  });
59
59
 
60
- it('When the user switches to preview tab, \'Click the button to start recording...\' help text message, rec button, mic icon, \'Allow microphone access\' help text should be displayed in \'Standard audio recorder\'. Maximum recording length should be displayed in minutes(mm:ss) format.', () => {
61
- utilities.verifyInnerText(audioResponsePage.standardPreviewRecorderHelpText(), 'Click the button to start recording...');
60
+ it('When the user switches to preview tab, \'Click the button to start recording\' help text message, rec button, mic icon, \'Allow microphone access\' help text should be displayed in \'Standard audio recorder\'. Maximum recording length should be displayed in minutes(mm:ss) format.', () => {
61
+ utilities.verifyInnerText(audioResponsePage.standardPreviewRecorderHelpText(), 'Click the button to start recording');
62
62
  utilities.verifyElementVisibilityState(audioResponsePage.standardPreviewRecorderHelpText(), 'visible');
63
63
  utilities.verifyInnerText(audioResponsePage.standardPreviewStartRecordingButton(), 'REC');
64
64
  utilities.verifyElementVisibilityState(audioResponsePage.standardPreviewStartRecordingButton(), 'visible');
@@ -18,8 +18,8 @@ describe('Preview of Audio response for standard audio recorder style', () => {
18
18
  audioResponsePage.steps.switchToPreviewTab();
19
19
  });
20
20
 
21
- it('By default: \'Click the button to start recording...\' help text message, rec button, mic icon, \'Allow microphone access\' help text should be displayed in \'Standard audio recorder\'. Maximum recording length should be displayed in minutes(mm:ss) format.', () => {
22
- utilities.verifyInnerText(audioResponsePage.standardPreviewRecorderHelpText(), 'Click the button to start recording...');
21
+ it('By default: \'Click the button to start recording\' help text message, rec button, mic icon, \'Allow microphone access\' help text should be displayed in \'Standard audio recorder\'. Maximum recording length should be displayed in minutes(mm:ss) format.', () => {
22
+ utilities.verifyInnerText(audioResponsePage.standardPreviewRecorderHelpText(), 'Click the button to start recording');
23
23
  utilities.verifyElementVisibilityState(audioResponsePage.standardPreviewRecorderHelpText(), 'visible');
24
24
  utilities.verifyInnerText(audioResponsePage.standardPreviewStartRecordingButton(), 'REC');
25
25
  utilities.verifyElementVisibilityState(audioResponsePage.standardPreviewStartRecordingButton(), 'visible');
@@ -19,10 +19,10 @@ describe('Preview of Video response for compact recorder style', () => {
19
19
  videoResponsePage.steps.switchToPreviewTab();
20
20
  });
21
21
 
22
- it(`Video response : If user selects \'Compact\' option from \'video recorder style\' toggle buttons, then \'Record\' button and \'Click the button to start recording...\' help text should be displayed in the preview tab`, () => {
22
+ it(`Video response : If user selects \'Compact\' option from \'video recorder style\' toggle buttons, then \'Record\' button and \'Click the button to start recording\' help text should be displayed in the preview tab`, () => {
23
23
  utilities.verifyElementVisibilityState(videoResponsePage.recordButtonCompactPreview(), 'visible');
24
24
  utilities.verifyInnerText(videoResponsePage.recordButtonCompactPreview(), 'Record');
25
- utilities.verifyInnerText(videoResponsePage.recordingHelpTextCompactPreview(), 'Click the button to start recording...');
25
+ utilities.verifyInnerText(videoResponsePage.recordingHelpTextCompactPreview(), 'Click the button to start recording');
26
26
  utilities.verifyElementVisibilityState(videoResponsePage.recordingHelpTextCompactPreview(), 'visible');
27
27
  });
28
28
 
@@ -59,11 +59,11 @@ describe('Create item page - Video response: Preview contents', () => {
59
59
  utilities.verifyElementVisibilityState(videoResponsePage.questionInstructionsText(), 'visible');
60
60
  });
61
61
 
62
- it('A start recording interface with a \'Rec\' button and text \'Click the button to start recording...\' should be displayed in the preview tab', () => {
62
+ it('A start recording interface with a \'Rec\' button and text \'Click the button to start recording\' should be displayed in the preview tab', () => {
63
63
  utilities.verifyElementVisibilityState(videoResponsePage.clickTapAnywhereArea(), 'visible');
64
64
  utilities.verifyInnerText(videoResponsePage.recordButton(), 'REC');
65
65
  utilities.verifyElementVisibilityState(videoResponsePage.recordButton(), 'visible');
66
- utilities.verifyInnerText(videoResponsePage.startRecordingText(), 'Click the button to start recording...');
66
+ utilities.verifyInnerText(videoResponsePage.startRecordingText(), 'Click the button to start recording');
67
67
  utilities.verifyElementVisibilityState(videoResponsePage.startRecordingText(), 'visible');
68
68
  });
69
69
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.598-IEI-7162-Improve-cypress-coverage-for-number-line-79480ee.0",
3
+ "version": "1.0.599-IEI-4213-b4ff6b7.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {