Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: apply shouldWaitForQuiescence for activate as well #739

Merged
merged 1 commit into from
Jul 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions WebDriverAgentLib/Routing/FBSession.m
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,13 @@ - (FBApplication *)launchApplicationWithBundleId:(NSString *)bundleIdentifier
environment:(nullable NSDictionary <NSString *, NSString *> *)environment
{
FBApplication *app = [[FBApplication alloc] initWithBundleIdentifier:bundleIdentifier];
if (nil == shouldWaitForQuiescence) {
// Iherit the quiescence check setting from the main app under test by default
app.fb_shouldWaitForQuiescence = nil != self.testedApplicationBundleId && self.shouldAppsWaitForQuiescence;
} else {
app.fb_shouldWaitForQuiescence = [shouldWaitForQuiescence boolValue];
}
if (app.fb_state < 2) {
if (nil == shouldWaitForQuiescence) {
// Iherit the quiescence check setting from the main app under test by default
app.fb_shouldWaitForQuiescence = nil != self.testedApplicationBundleId && self.shouldAppsWaitForQuiescence;
} else {
app.fb_shouldWaitForQuiescence = [shouldWaitForQuiescence boolValue];
}
app.launchArguments = arguments ?: @[];
app.launchEnvironment = environment ?: @{};
[app launch];
Expand Down