Files
freeCodeCamp/cypress/support/selectors.ts
Oliver Eyton-Williams 5d9dccb37f test: unlock when syntax error fixed (#50325)
* refactor: use data-cy for console output

* test(client): unlock after fixing syntax errors
2023-05-09 23:15:08 +05:30

11 lines
222 B
TypeScript

export const selectors = {
class: {
reactMonacoEditor: '.react-monaco-editor-container'
},
id: {},
dataCy: { outputText: '[data-cy="output-text"]' },
tag: {
inputSolution: 'input[name="solution"]'
}
};