graphdb-workbench-tests
Version:
Cypress tests for GraphDB workbench
31 lines (23 loc) • 877 B
JavaScript
export class ErrorPluginSteps {
static getErrorPlugin() {
return cy.get('.error-response-plugin');
}
static getErrorPluginHeader() {
return ErrorPluginSteps.getErrorPlugin().find('.error-response-plugin-header');
}
static getErrorPluginErrorStatus() {
return ErrorPluginSteps.getErrorPluginHeader().find('.error-response-plugin-error-status');
}
static getErrorPluginErrorTimeMessage() {
return ErrorPluginSteps.getErrorPluginHeader().find('.error-response-plugin-error-time-message');
}
static getErrorPluginBody() {
return ErrorPluginSteps.getErrorPlugin().find('.error-response-plugin-body');
}
static getShowFullErrorMessage() {
return cy.get('.show-full-message-link');
}
static getShowLessErrorMessage() {
return cy.get('.show-less-message-link');
}
}