- Testing (Refactoring): Abstract out to helper file functions for approving local storage and opening the main menu - Docs (CHANGES): Update - npm: Update devDeps; update nested deps for security audit
9 lines
221 B
JavaScript
9 lines
221 B
JavaScript
export const approveStorage = (t) => {
|
|
return t
|
|
.click('#dialog_buttons > input[type=button][value=OK]');
|
|
};
|
|
|
|
export const approveStorageAndOpenMainMenu = (t) => {
|
|
return approveStorage(t).click('#main_icon');
|
|
};
|