Update e2e tests from upstream repository. (#24708)

Ideally, we'd eventually have a single source of truth for these.
Этот коммит содержится в:
Jesse Hallam
2023-10-05 16:49:18 -03:00
коммит произвёл GitHub
родитель 510136a192
Коммит f5299cd193
3 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@@ -99,7 +99,7 @@ Cypress.Commands.add('createPlaybook', (teamName, playbookName) => {
// Select the playbook from the dropdown menu
Cypress.Commands.add('selectPlaybookFromDropdown', (playbookName) => {
cy.findByTestId('autoCompleteSelector').should('exist').within(() => {
cy.get('input').click().type(playbookName.toLowerCase());
cy.get('input').click().type(playbookName.toLowerCase(), {force: true});
cy.get('#suggestionList').contains(playbookName).click({force: true});
});
});