We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc864c0 commit fa50838Copy full SHA for fa50838
cypress/tests/block.cy.js
@@ -20,11 +20,14 @@ context('Block Acceptance Tests', () => {
20
cy.get('h2:contains(Heading h2)').should('be.visible');
21
});
22
23
+
24
it('As editor I can add a Heading H3 block ', () => {
25
cy.visit('/document/edit');
26
cy.addNewBlock('heading');
- // cy.get('#field-tag > .react-select__control').click();
27
- // cy.get('#react-select-38-option-1').click();
+ cy.get('#field-tag > .react-select__control > .react-select__indicators >')
28
+ .trigger('click')
29
+ .findByText('h3')
30
+ .click();
31
cy.get('.editable').click().type('Heading h3');
32
cy.get('#toolbar-save').click();
33
cy.visit('/document');
0 commit comments