From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- .../web/static/tests/helpers/test_utils_modal.js | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 addons/web/static/tests/helpers/test_utils_modal.js (limited to 'addons/web/static/tests/helpers/test_utils_modal.js') diff --git a/addons/web/static/tests/helpers/test_utils_modal.js b/addons/web/static/tests/helpers/test_utils_modal.js new file mode 100644 index 00000000..ca3eeef1 --- /dev/null +++ b/addons/web/static/tests/helpers/test_utils_modal.js @@ -0,0 +1,26 @@ +odoo.define('web.test_utils_modal', function (require) { + "use strict"; + + /** + * Modal Test Utils + * + * This module defines various utility functions to help test pivot views. + * + * Note that all methods defined in this module are exported in the main + * testUtils file. + */ + + const { _t } = require('web.core'); + const testUtilsDom = require('web.test_utils_dom'); + + /** + * Click on a button in the footer of a modal (which contains a given string). + * + * @param {string} text (in english: this method will perform the translation) + */ + function clickButton(text) { + return testUtilsDom.click($(`.modal-footer button:contains(${_t(text)})`)); + } + + return { clickButton }; +}); -- cgit v1.2.3