Won't Fix
Last Updated: 26 Mar 2019 07:01 by ADMIN
ADMIN
Plamen
Created on: 31 Jan 2013 14:49
Type: Feature Request
0
The test freezes when trying to perform multiple actions in parallel
The test freezes when trying to perform multiple actions in parallel.

Here's a sample code:

Parallel.Invoke (               
 
            () => {Actions.SetText(Pages.ClientLogIn.GeneralBoxContentUcClientRegistrationScetbLastNameTbSanitizedText, "test");}, 
            () => {Actions.SetText(Pages.ClientLogIn.GeneralBoxContentUcClientRegistrationScetbFirstNameTbSanitizedText, "test");}
            );

If we comment the first action, the second will run just fine.

To reproduce:
Sample project is attached to the internal description.
1 comment
ADMIN
Konstantin Petkov
Posted on: 01 Feb 2013 07:25
The parallel multiple actions in playback may be expensive to support. The question probably is - do you really need that?