mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:38:11 +00:00
headless-browser: Load test page after callbacks are registered
Eliminates possibility that page will load before callbacks are added.
This commit is contained in:
parent
2f09bfeff2
commit
d28c400fcb
1 changed files with 2 additions and 1 deletions
|
@ -215,7 +215,6 @@ static ErrorOr<TestResult> run_dump_test(HeadlessWebContentView& view, StringVie
|
||||||
}));
|
}));
|
||||||
|
|
||||||
auto url = URL::create_with_file_scheme(TRY(FileSystem::real_path(input_path)).to_byte_string());
|
auto url = URL::create_with_file_scheme(TRY(FileSystem::real_path(input_path)).to_byte_string());
|
||||||
view.load(url);
|
|
||||||
|
|
||||||
String result;
|
String result;
|
||||||
auto did_finish_test = false;
|
auto did_finish_test = false;
|
||||||
|
@ -253,6 +252,8 @@ static ErrorOr<TestResult> run_dump_test(HeadlessWebContentView& view, StringVie
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
view.load(url);
|
||||||
|
|
||||||
timeout_timer->start();
|
timeout_timer->start();
|
||||||
loop.exec();
|
loop.exec();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue