We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e6ef03 commit 1ef83daCopy full SHA for 1ef83da
1 file changed
TransactionProcessor.Mobile.UITests/Steps/SharedAppSteps.cs
@@ -30,8 +30,10 @@ public async Task WhenIClickOnTheBackButton() {
30
31
[Then(@"The application closes")]
32
public void ThenTheApplicationCloses() {
33
- AppState state = AppiumDriverWrapper.Driver.GetAppState("com.transactionprocessor.mobile");
34
- state.ShouldBe(AppState.NotRunning);
+ if (AppiumDriverWrapper.MobileTestPlatform != MobileTestPlatform.iOS) {
+ AppState state = AppiumDriverWrapper.Driver.GetAppState("com.transactionprocessor.mobile");
35
+ state.ShouldBe(AppState.NotRunning);
36
+ }
37
}
38
39
[When(@"I click yes")]
0 commit comments