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.

17 lines
524 B

  1. # -*- coding: utf-8 -*-
  2. import odoo.tests
  3. @odoo.tests.common.at_install(False)
  4. @odoo.tests.common.post_install(True)
  5. class TestUi(odoo.tests.HttpCase):
  6. def test_01_mail_base(self):
  7. # wait till page loaded
  8. code = """
  9. setTimeout(function () {
  10. console.log('ok');
  11. }, 1000);
  12. """
  13. link = '/web#action=%s' % self.ref('mail.mail_channel_action_client_chat')
  14. self.phantom_js(link, code, "odoo.__DEBUG__.services['mail_base.base']", login="admin")