Skip to content

Commit

Permalink
fix(quali): disabling devtools (#749)
Browse files Browse the repository at this point in the history
Co-authored-by: sa-github-api <138766536+sa-github-api@users.noreply.github.com>
  • Loading branch information
NikolaMilosa and sa-github-api authored Aug 19, 2024
1 parent 26e6ce0 commit a948a92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rs/cli/src/qualification/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ impl StepCtx {
None => Utc::now().timestamp().to_string(),
};

let browser = Browser::new(LaunchOptionsBuilder::default().window_size(Some((1920, 1080))).build()?)?;
let browser = Browser::new(LaunchOptionsBuilder::default().devtools(false).window_size(Some((1920, 1080))).build()?)?;
let tab = browser.new_tab()?;

for panel in Panel::iter() {
Expand Down

0 comments on commit a948a92

Please sign in to comment.