@@ -35,24 +35,24 @@ CancellationToken cancellationToken
35
35
// execute precondition instructions if available
36
36
if ( preconditionExecutionParam != null )
37
37
{
38
+ await NavigateToRouteAsync ( page , domain , preconditionExecutionParam . Route ) ;
39
+
38
40
foreach ( var instruction in preconditionExecutionParam . Instructions )
39
41
{
40
42
await TestAsync (
41
43
page ,
42
- domain ,
43
- preconditionExecutionParam . Route ,
44
44
instruction ,
45
45
instruction => ConsoleHelper . WriteLine ( $ "- Executing step: { instruction . TestStep . Id } - { instruction . TestStep . Description } ")
46
46
) ;
47
47
}
48
48
}
49
49
50
+ await NavigateToRouteAsync ( page , domain , executionParam . Route ) ;
51
+
50
52
foreach ( var instruction in executionParam . Instructions )
51
53
{
52
54
var result = await TestAsync (
53
55
page ,
54
- domain ,
55
- executionParam . Route ,
56
56
instruction ,
57
57
instruction => ConsoleHelper . WriteLineYellow ( $ "- Executing step: { instruction . TestStep . Id } - { instruction . TestStep . Description } ")
58
58
) ;
@@ -93,37 +93,44 @@ private async Task<IBrowserContext> GetBrowserContext(IBrowser browser)
93
93
return context ;
94
94
}
95
95
96
- private async Task < TestStepResult > TestAsync (
96
+ private async Task NavigateToRouteAsync (
97
97
IPage page ,
98
98
string domain ,
99
- string route ,
100
- TestStepInstruction instruction ,
101
- Action < TestStepInstruction > consoleAction
99
+ string route
102
100
)
103
101
{
104
- try
102
+ var requestUri = $ "{ domain } /{ route } ";
103
+ if ( requestUri != _requestUri )
105
104
{
106
- var requestUri = $ "{ domain } /{ route } ";
107
- if ( requestUri != _requestUri )
105
+ await page . GotoAsync ( requestUri ) ;
106
+ _requestUri = requestUri ;
107
+
108
+ // being safe and try again in certain case :-)
109
+ if ( ! page . Url . StartsWith ( requestUri ) )
108
110
{
109
- await page . GotoAsync ( requestUri ) ;
110
- _requestUri = requestUri ;
111
+ await Task . Delay ( 1000 ) ;
111
112
112
- // being safe and try again in certain case :-)
113
- if ( ! page . Url . StartsWith ( requestUri ) )
114
- {
115
- await page . GotoAsync ( requestUri ) ;
116
- }
113
+ await page . GotoAsync ( requestUri ) ;
117
114
}
115
+ }
116
+ }
118
117
118
+ private async Task < TestStepResult > TestAsync (
119
+ IPage page ,
120
+ TestStepInstruction instruction ,
121
+ Action < TestStepInstruction > consoleAction
122
+ )
123
+ {
124
+ try
125
+ {
119
126
await ProcessStepAsync ( page , instruction , consoleAction ) ;
120
-
121
- return TestStepResult . Success ( instruction . TestStep ) ;
122
127
}
123
128
catch ( Exception ex )
124
129
{
125
130
return TestStepResult . Failed ( instruction . TestStep , ex . Message ) ;
126
131
}
132
+
133
+ return TestStepResult . Success ( instruction . TestStep ) ;
127
134
}
128
135
129
136
private static async Task < bool > ProcessStepAsync (
0 commit comments