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
589 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_to(self):
  6. # checks the presence of an element with a link to the recipient
  7. code = """
  8. setTimeout(function () {
  9. $('a.recipient_link')[0].click();
  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_to.MailTo']", login="admin")