diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ac0537..7922d36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.4 + +- Start Chrome maximized. + ## 0.1.3 - widen the version constraint on `package:webkit_inspection_protocol` diff --git a/lib/src/chrome.dart b/lib/src/chrome.dart index 6bc975e..ea1a144 100644 --- a/lib/src/chrome.dart +++ b/lib/src/chrome.dart @@ -86,6 +86,7 @@ class Chrome { '--no-default-browser-check', '--disable-default-apps', '--disable-translate', + '--start-maximized', ]; if (headless) { args.add('--headless'); diff --git a/pubspec.yaml b/pubspec.yaml index 7ea781e..9a3ffc6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: browser_launcher description: Provides a standardized way to launch web browsers for testing and tools. -version: 0.1.3 +version: 0.1.4 author: Dart Team homepage: https://github.com/dart-lang/browser_launcher