Skip to content

Commit

Permalink
feat: Add idleTimeoutMs param to the openUrl call (#933)
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach authored Aug 7, 2024
1 parent 7c51145 commit 5e98841
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions WebDriverAgentLib/Commands/FBSessionCommands.m
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ + (NSArray *)routes
return FBResponseWithStatus([FBCommandStatus invalidArgumentErrorWithMessage:@"URL is required" traceback:nil]);
}
NSString* bundleId = request.arguments[@"bundleId"];
NSNumber* idleTimeoutMs = request.arguments[@"idleTimeoutMs"];
NSError *error;
if (nil == bundleId) {
if (![XCUIDevice.sharedDevice fb_openUrl:urlString error:&error]) {
Expand All @@ -75,6 +76,10 @@ + (NSArray *)routes
if (![XCUIDevice.sharedDevice fb_openUrl:urlString withApplication:bundleId error:&error]) {
return FBResponseWithUnknownError(error);
}
if (idleTimeoutMs.doubleValue > 0) {
XCUIApplication *app = [[XCUIApplication alloc] initWithBundleIdentifier:bundleId];
[app fb_waitUntilStableWithTimeout:FBMillisToSeconds(idleTimeoutMs.doubleValue)];
}
}
return FBResponseWithOK();
}
Expand Down

0 comments on commit 5e98841

Please sign in to comment.