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.

18 lines
621 B

  1. import odoo.tests
  2. @odoo.tests.common.at_install(False)
  3. @odoo.tests.common.post_install(True)
  4. class TestUi(odoo.tests.HttpCase):
  5. def test_01_mail_all(self):
  6. # wait till page loaded and then click and wait again
  7. code = """
  8. setTimeout(function () {
  9. $(".mail_all").click();
  10. setTimeout(function () {console.log('ok');}, 3000);
  11. }, 1000);
  12. """
  13. link = "/web#action=%s" % self.ref("mail.mail_channel_action_client_chat")
  14. self.phantom_js(
  15. link, code, "odoo.__DEBUG__.services['mail_all.all']", login="admin"
  16. )