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
980 B

8 years ago
  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_res_partner_mails_to_count(self):
  6. # self.phantom_js('/', "openerp.Tour.run('mails_count_tour', 'test')", "openerp.Tour.tours.mails_count_tour", login="admin")
  7. self.phantom_js("/", "odoo.__DEBUG__.services['web.Tour'].run('mails_count_tour', 'test')", "odoo.__DEBUG__.services['web.Tour'].tours.mails_count_tour", login="admin")
  8. def test_02_res_partner_mails_from_count(self):
  9. # wait till page loaded and then click and wait again
  10. code = """
  11. setTimeout(function () {
  12. $(".mails_from").click();
  13. setTimeout(function () {console.log('ok');}, 3000);
  14. }, 3000);
  15. """
  16. link = '/web#id=3&view_type=form&model=res.partner'
  17. self.phantom_js(link, code, "odoo.__DEBUG__.services['web.Tour'].tours.mails_count_tour", login="admin")