Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix test 09_delivery_slips_pdf_and_options #13597

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/E2E/test/campaigns/common_scenarios/order.js
Expand Up @@ -424,6 +424,10 @@ module.exports = {
test('should go to the created order', () => client.waitForExistAndClick(OrderPage.order_view_button.replace('%ORDERNumber', 1)));
test('should change order state to "' + status + '"', () => client.updateStatus(status));
test('should click on "Update state" button', () => client.waitForExistAndClick(OrderPage.update_status_button));
/**
* should refresh the page, to pass the error
*/
test('should refresh the page', () => client.refresh());
test('should check that the status was updated', () => client.waitForVisible(OrderPage.status.replace('%STATUS', status)));
}, 'order');
},
Expand Down