You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
877 B

  1. # Copyright 2016 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
  2. # Copyright 2016 manawi <https://it-projects.info/team/manawi>
  3. # Copyright 2018 Kolushov Alexandr <https://it-projects.info/team/KolushovAlexandr>
  4. # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
  5. import odoo.tests
  6. @odoo.tests.common.at_install(False)
  7. @odoo.tests.common.post_install(True)
  8. class TestUi(odoo.tests.HttpCase):
  9. def test_01_mail_all(self):
  10. # wait till page loaded and then click and wait again
  11. code = """
  12. setTimeout(function () {
  13. $(".mail_all").click();
  14. setTimeout(function () {console.log('ok');}, 3000);
  15. }, 1000);
  16. """
  17. link = '/web#action=%s' % self.ref('mail.action_discuss')
  18. self.phantom_js(link, code, "odoo.__DEBUG__.services['mail_all.all']", login="admin")