Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/scope.js
Original file line number Diff line number Diff line change
Expand Up @@ -2673,6 +2673,8 @@ module.exports = {
// The below does not work if there's not a space between ':' and 'none'
simple_user_error: await scope.page.$$(`xpath/.//*[contains(@class, "da-has-error")][not(contains(@style,"display: none"))]`),
system_error: await scope.page.$$(`xpath/.//meta[@content="docassemble: Error"]` ),
// Hardcoding the `al_custom_error_action` screen (that's what the base64 here is). It hides actual errors and looks like a continue screen, but isn't.
al_custom_error: await scope.page.$$('.question-custom-error-action .daattributions #trigger[data-variable="YWxfY3VzdG9tX2Vycm9yX2FjdGlvbg"]'),
};

let error_handlers = {};
Expand Down
Loading