chore: Use WEBDRIVER_OPTION_ARGS with Playwright (#26315)
This commit is contained in:
parent
eb65cea971
commit
3f9183a162
|
|
@ -137,7 +137,8 @@ class WebDriverPlaywright(WebDriverProxy):
|
|||
self, url: str, element_name: str, user: User
|
||||
) -> bytes | None:
|
||||
with sync_playwright() as playwright:
|
||||
browser = playwright.chromium.launch()
|
||||
browser_args = current_app.config["WEBDRIVER_OPTION_ARGS"]
|
||||
browser = playwright.chromium.launch(args=browser_args)
|
||||
pixel_density = current_app.config["WEBDRIVER_WINDOW"].get(
|
||||
"pixel_density", 1
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue