mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
b2103cda61
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4482 GitOrigin-RevId: bd628911e607ab41399b31f7dd8fe9c361e0f052
12 lines
325 B
TypeScript
12 lines
325 B
TypeScript
/**
|
|
* Clear a Console's textarea.
|
|
* Work around cy.clear sometimes not working in the Console's textareas.
|
|
*/
|
|
Cypress.Commands.add('clearConsoleTextarea', { prevSubject: 'element' }, el => {
|
|
cy.wrap(el).type('{selectall}', { force: true }).trigger('keydown', {
|
|
keyCode: 46,
|
|
which: 46,
|
|
force: true,
|
|
});
|
|
});
|