Skip to Content
Menu
This question has been flagged
1 Reply
1203 Views

Hello, I have a button defined inside the body of a form in Odoo 15, as follows:

     

And I am trying to capture it and click on that button in an Integration Test as follows:

  {

         trigger: "button[name=action_process_wizard]",

         content: _t("Open the wizard"),

     }

But it doesn't work, any idea or example how can that be done?

Avatar
Discard
Best Answer

Hi,

Try this:

{
    trigger: "button[name='action_process_wizard']",
    content: _t("Open the wizard"),
    run: 'click',  // specifying the action to perform
}

Avatar
Discard
Related Posts Replies Views Activity
1
Nov 22
2271
0
Jul 22
2543
0
Jan 22
1555
4
Dec 23
4950
1
Jul 22
3417