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.

21 lines
678 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_archives(self):
  6. # wait till page loaded and then click and wait again
  7. code = """
  8. setTimeout(function () {
  9. $(".mail_archives").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,
  16. code,
  17. "odoo.__DEBUG__.services['mail_archives.archives']",
  18. login="admin",
  19. )