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.
31 lines
1.1 KiB
31 lines
1.1 KiB
# -*- coding: utf-8 -*-
|
|
import odoo.tests
|
|
|
|
|
|
@odoo.tests.common.at_install(False)
|
|
@odoo.tests.common.post_install(True)
|
|
class TestUi(odoo.tests.HttpCase):
|
|
def test_01_res_partner_mails_to_count(self):
|
|
# self.phantom_js('/', "openerp.Tour.run('mails_count_tour', 'test')", "openerp.Tour.tours.mails_count_tour", login="admin")
|
|
self.phantom_js(
|
|
"/",
|
|
"odoo.__DEBUG__.services['web.Tour'].run('mails_count_tour', 'test')",
|
|
"odoo.__DEBUG__.services['web.Tour'].tours.mails_count_tour",
|
|
login="admin",
|
|
)
|
|
|
|
def test_02_res_partner_mails_from_count(self):
|
|
# wait till page loaded and then click and wait again
|
|
code = """
|
|
setTimeout(function () {
|
|
$(".mails_from").click();
|
|
setTimeout(function () {console.log('ok');}, 3000);
|
|
}, 3000);
|
|
"""
|
|
link = "/web#id=3&view_type=form&model=res.partner"
|
|
self.phantom_js(
|
|
link,
|
|
code,
|
|
"odoo.__DEBUG__.services['web.Tour'].tours.mails_count_tour",
|
|
login="admin",
|
|
)
|