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.
|
|
from werkzeug import url_encode
import odoo.tests
@odoo.tests.common.at_install(True) @odoo.tests.common.post_install(True) class TestUi(odoo.tests.HttpCase): def test_01_mail_sent(self): # wait till page loaded and then click and wait again
# needed because tests are run before the module is marked as # installed. In js web will only load qweb coming from modules # that are returned by the backend in module_boot. Without # this you end up with js, css but no qweb. self.env["ir.module.module"].search( [("name", "=", "mail_sent")], limit=1 ).state = "installed"
code = """
setTimeout(function () { $(".mail_sent").click(); setTimeout(function () {console.log('ok');}, 3000); }, 1000); """
link = "/web#%s" % url_encode({"action": "mail.action_discuss"}) self.phantom_js( link, code, "odoo.__DEBUG__.services['web_tour.tour'].tours.mail_tour.ready", login="demo", )
|