mirror of
https://github.com/bringout/oca-ocb-crm.git
synced 2026-04-22 11:12:02 +02:00
19.0 vanilla
This commit is contained in:
parent
dc68f80d3f
commit
7221b9ac46
610 changed files with 135477 additions and 161677 deletions
|
|
@ -0,0 +1,42 @@
|
|||
import { defineCrmLivechatModels } from "@crm_livechat/../tests/crm_livechat_test_helpers";
|
||||
|
||||
import {
|
||||
click,
|
||||
contains,
|
||||
insertText,
|
||||
openDiscuss,
|
||||
start,
|
||||
startServer,
|
||||
} from "@mail/../tests/mail_test_helpers";
|
||||
|
||||
import { describe, test } from "@odoo/hoot";
|
||||
|
||||
import { Command, serverState } from "@web/../tests/web_test_helpers";
|
||||
|
||||
describe.current.tags("desktop");
|
||||
defineCrmLivechatModels();
|
||||
|
||||
test("can create a lead from the thread action after the conversation ends", async () => {
|
||||
const pyEnv = await startServer();
|
||||
const groupId = pyEnv["res.groups"].create({ name: "Sales Team" });
|
||||
serverState.groupSalesTeamId = groupId;
|
||||
pyEnv["res.users"].write([serverState.userId], {
|
||||
group_ids: [Command.link(groupId)],
|
||||
});
|
||||
const guestId = pyEnv["mail.guest"].create({ name: "Visitor" });
|
||||
const channel_id = pyEnv["discuss.channel"].create({
|
||||
channel_type: "livechat",
|
||||
channel_member_ids: [
|
||||
Command.create({ partner_id: serverState.partnerId, livechat_member_type: "agent" }),
|
||||
Command.create({ guest_id: guestId, livechat_member_type: "visitor" }),
|
||||
],
|
||||
livechat_operator_id: serverState.partnerId,
|
||||
});
|
||||
await start();
|
||||
await openDiscuss(channel_id);
|
||||
await contains(".o-livechat-ChannelInfoList"); // wait for auto-open of this panel
|
||||
await click(".o-mail-DiscussContent-header button[title='Create Lead']");
|
||||
await insertText(".o-livechat-LivechatCommandDialog-form input", "testlead");
|
||||
await click(".o-mail-ActionPanel button", { text: "Create Lead" });
|
||||
await contains(".o_mail_notification", { text: "Created a new lead: testlead" });
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue