diff --git a/e2e-tests/cypress/tests/integration/channels/channel/channel_header_modal_spec.js b/e2e-tests/cypress/tests/integration/channels/channel/channel_header_modal_spec.js index 63c1fb2a32a..2cc5c74a8c9 100644 --- a/e2e-tests/cypress/tests/integration/channels/channel/channel_header_modal_spec.js +++ b/e2e-tests/cypress/tests/integration/channels/channel/channel_header_modal_spec.js @@ -36,13 +36,13 @@ describe('Channel Settings - Channel Header', () => { cy.findByText('Edit Channel Header').click(); // # Type something in the header edit box - cy.get('textarea[placeholder="Edit the channel header..."]').clear().type('This is the new header content'); + cy.get('textarea[placeholder="Edit the Channel Header..."]').clear().type('This is the new header content'); // * Verify the "Preview" button exists cy.findByText('Preview').should('be.visible'); // * Verify that before hitting the preview button, the style on the textbox is `display: block` - cy.get('textarea[placeholder="Edit the channel header..."]').should('have.css', 'display', 'block'); + cy.get('textarea[placeholder="Edit the Channel Header..."]').should('have.css', 'display', 'block'); // # Click the "Preview" button cy.findByText('Preview').click(); @@ -51,7 +51,7 @@ describe('Channel Settings - Channel Header', () => { cy.findByText('Edit').should('be.visible'); // * Verify that the display is now none on the textbox element - cy.get('textarea[placeholder="Edit the channel header..."]').should('have.css', 'display', 'none'); + cy.get('textarea[placeholder="Edit the Channel Header..."]').should('have.css', 'display', 'none'); }); }); }); diff --git a/e2e-tests/cypress/tests/integration/channels/enterprise/accessibility/accessibility_input_fields_spec.ts b/e2e-tests/cypress/tests/integration/channels/enterprise/accessibility/accessibility_input_fields_spec.ts index 4cef7d149dd..927e258c342 100644 --- a/e2e-tests/cypress/tests/integration/channels/enterprise/accessibility/accessibility_input_fields_spec.ts +++ b/e2e-tests/cypress/tests/integration/channels/enterprise/accessibility/accessibility_input_fields_spec.ts @@ -231,7 +231,7 @@ describe('Verify Accessibility Support in different input fields', () => { cy.get('#rhsContainer').within(() => { // * Verify Accessibility Support in RHS input - cy.uiGetReplyTextBox().should('have.attr', 'aria-label', 'reply to this thread...').and('have.attr', 'role', 'textbox').focus().type('test').tab({shift: true}).tab().tab(); + cy.uiGetReplyTextBox().should('have.attr', 'placeholder', 'Reply to this thread...').and('have.attr', 'role', 'textbox').focus().type('test').tab({shift: true}).tab().tab(); // * Verify if the focus is on the preview button cy.get('#PreviewInputTextButton').should('be.focused').and('have.attr', 'aria-label', 'preview').tab(); diff --git a/e2e-tests/cypress/tests/integration/channels/enterprise/system_console/channel_moderation/create_posts_spec.ts b/e2e-tests/cypress/tests/integration/channels/enterprise/system_console/channel_moderation/create_posts_spec.ts index e3a89077193..4e3a7267b05 100644 --- a/e2e-tests/cypress/tests/integration/channels/enterprise/system_console/channel_moderation/create_posts_spec.ts +++ b/e2e-tests/cypress/tests/integration/channels/enterprise/system_console/channel_moderation/create_posts_spec.ts @@ -61,7 +61,7 @@ describe('MM-23102 - Channel Moderation - Create Posts', () => { // # Check Guest user should not have the permission to create a post on a channel when the option is removed // * Guest user should see a message stating that this channel is read-only and the textbox area should be disabled - cy.findByTestId('post_textbox_placeholder').should('have.text', 'This channel is read-only. Only members with permission can post here.'); + cy.findByTestId('post_textbox').should('have.attr', 'placeholder', 'This channel is read-only. Only members with permission can post here.'); cy.findByTestId('post_textbox').should('be.disabled'); // # As a system admin, check the option to allow Create Posts for Guests and save @@ -75,7 +75,7 @@ describe('MM-23102 - Channel Moderation - Create Posts', () => { // # Check Guest user should have the permission to create a post on a channel when the option is allowed // * Guest user should see a message stating that this channel is read-only and the textbox area should be disabled cy.findByTestId('post_textbox').clear(); - cy.findByTestId('post_textbox_placeholder').should('have.text', `Write to ${testChannel.display_name}`); + cy.findByTestId('post_textbox').should('have.attr', 'placeholder', `Write to ${testChannel.display_name}`); cy.findByTestId('post_textbox').should('not.be.disabled'); }); diff --git a/e2e-tests/cypress/tests/integration/channels/keyboard_shortcuts/system_message_not_open_for_edit_spec.js b/e2e-tests/cypress/tests/integration/channels/keyboard_shortcuts/system_message_not_open_for_edit_spec.js index c66a4084d12..e0743d4267a 100644 --- a/e2e-tests/cypress/tests/integration/channels/keyboard_shortcuts/system_message_not_open_for_edit_spec.js +++ b/e2e-tests/cypress/tests/integration/channels/keyboard_shortcuts/system_message_not_open_for_edit_spec.js @@ -31,7 +31,7 @@ describe('Keyboard Shortcuts', () => { // * Verify modal is open cy.findByRole('dialog', {name: 'Edit Header for Off-Topic'}).within(() => { // # Enter new header and save - cy.findByRole('textbox', {name: 'edit the channel header...'}).type(newHeader); + cy.findByRole('textbox', {name: 'Edit the text appearing next to the channel name in the header.'}).type(newHeader); cy.uiSave(); });