Test timeout has no effect #82
-
I have seen the guide to run front-end tests and according to it, when a step is defined, you can indicate in the "timeout" property a time that has to pass to continue with the execution of the next step. Well, in my case this does not happen. All the steps are executed immediately. Is there any condition for this timeout to take effect? By the way, I am testing a module made by me for the POS. Thanks PD: This is a copy of a thread added in Odoo community help forum |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I'd say the effect for that parameter is not a delay but a time to let you're step run until is considered failed (thus the term timeout). I think there's no specific step delay option but you can set it globally with |
Beta Was this translation helpful? Give feedback.
I'd say the effect for that parameter is not a delay but a time to let you're step run until is considered failed (thus the term timeout). I think there's no specific step delay option but you can set it globally with
step_delay
when you invoke the tour fromstart_tour
in your test.