Skip to content

Commit

Permalink
feta: Add idleTimeoutMs param to the openUrl call
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach committed Aug 7, 2024
1 parent 71a697c commit 484d856
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 @@ -67,6 +67,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 @@ -76,6 +77,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:idleTimeoutMs.doubleValue / 1000.0];
}
}
return FBResponseWithOK();
}
Expand Down

0 comments on commit 484d856

Please sign in to comment.