├── .junie └── guidelines.md ├── LICENSE.md ├── composer.json ├── package.json ├── pint.json ├── rector.php ├── resources ├── images │ └── missing.snap └── js │ ├── alpinejs.min.js │ ├── axe.min.js │ └── image-compare.min.js ├── src ├── Api │ ├── ArrayablePendingAwaitablePage.php │ ├── AwaitableWebpage.php │ ├── Concerns │ │ ├── HasWaitCapabilities.php │ │ ├── InteractsWithElements.php │ │ ├── InteractsWithFrames.php │ │ ├── InteractsWithScreen.php │ │ ├── InteractsWithTab.php │ │ ├── InteractsWithToolbar.php │ │ ├── InteractsWithViewPort.php │ │ ├── MakesConsoleAssertions.php │ │ ├── MakesElementAssertions.php │ │ ├── MakesScreenshotAssertions.php │ │ └── MakesUrlAssertions.php │ ├── From.php │ ├── Livewire.php │ ├── On.php │ ├── PendingAwaitablePage.php │ ├── TestableLivewire.php │ └── Webpage.php ├── Autoload.php ├── Browsable.php ├── Cleanables │ ├── Inertia.php │ ├── Livewire.php │ └── Ziggy.php ├── Configuration.php ├── Contracts │ ├── Cleanable.php │ ├── HttpServer.php │ └── PlaywrightServer.php ├── Drivers │ ├── LaravelHttpServer.php │ └── NullableHttpServer.php ├── Enums │ ├── AccessibilityIssueLevel.php │ ├── BrowserType.php │ ├── City.php │ ├── ColorScheme.php │ └── Device.php ├── Exceptions │ ├── BrowserAlreadyClosedException.php │ ├── BrowserExpectationFailedException.php │ ├── BrowserNotSupportedException.php │ ├── OptionNotSupportedInParallelException.php │ ├── PlaywrightNotInstalledException.php │ ├── PlaywrightOutdatedException.php │ ├── PortNotFoundException.php │ └── ServerNotFoundException.php ├── Execution.php ├── Filters │ └── UsesBrowserTestCaseMethodFilter.php ├── GlobalState.php ├── Playwright │ ├── Browser.php │ ├── BrowserFactory.php │ ├── Client.php │ ├── Concerns │ │ └── InteractsWithPlaywright.php │ ├── Context.php │ ├── Element.php │ ├── InitScript.php │ ├── JSHandle.php │ ├── Locator.php │ ├── Page.php │ ├── Playwright.php │ └── Servers │ │ ├── AlreadyStartedPlaywrightServer.php │ │ └── PlaywrightNpmServer.php ├── Plugin.php ├── ServerManager.php └── Support │ ├── AccessibilityFormatter.php │ ├── BrowserTestIdentifier.php │ ├── ComputeUrl.php │ ├── GuessLocator.php │ ├── ImageDiffView.php │ ├── JavaScriptSerializer.php │ ├── PackageJsonDirectory.php │ ├── Port.php │ ├── Screenshot.php │ ├── Selector.php │ ├── Shell.php │ └── Str.php ├── testbench.yaml ├── tests-examples └── demo-todo-app.spec.js └── workbench ├── app ├── Models │ ├── .gitkeep │ └── User.php └── Providers │ └── WorkbenchServiceProvider.php ├── bootstrap └── app.php ├── database ├── factories │ ├── .gitkeep │ └── UserFactory.php ├── migrations │ └── .gitkeep └── seeders │ └── DatabaseSeeder.php ├── resources └── views │ └── .gitkeep └── routes ├── console.php └── web.php /.junie/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/.junie/guidelines.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/composer.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/package.json -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/pint.json -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/rector.php -------------------------------------------------------------------------------- /resources/images/missing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/resources/images/missing.snap -------------------------------------------------------------------------------- /resources/js/alpinejs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/resources/js/alpinejs.min.js -------------------------------------------------------------------------------- /resources/js/axe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/resources/js/axe.min.js -------------------------------------------------------------------------------- /resources/js/image-compare.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/resources/js/image-compare.min.js -------------------------------------------------------------------------------- /src/Api/ArrayablePendingAwaitablePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/ArrayablePendingAwaitablePage.php -------------------------------------------------------------------------------- /src/Api/AwaitableWebpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/AwaitableWebpage.php -------------------------------------------------------------------------------- /src/Api/Concerns/HasWaitCapabilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Concerns/HasWaitCapabilities.php -------------------------------------------------------------------------------- /src/Api/Concerns/InteractsWithElements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Concerns/InteractsWithElements.php -------------------------------------------------------------------------------- /src/Api/Concerns/InteractsWithFrames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Concerns/InteractsWithFrames.php -------------------------------------------------------------------------------- /src/Api/Concerns/InteractsWithScreen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Concerns/InteractsWithScreen.php -------------------------------------------------------------------------------- /src/Api/Concerns/InteractsWithTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Concerns/InteractsWithTab.php -------------------------------------------------------------------------------- /src/Api/Concerns/InteractsWithToolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Concerns/InteractsWithToolbar.php -------------------------------------------------------------------------------- /src/Api/Concerns/InteractsWithViewPort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Concerns/InteractsWithViewPort.php -------------------------------------------------------------------------------- /src/Api/Concerns/MakesConsoleAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Concerns/MakesConsoleAssertions.php -------------------------------------------------------------------------------- /src/Api/Concerns/MakesElementAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Concerns/MakesElementAssertions.php -------------------------------------------------------------------------------- /src/Api/Concerns/MakesScreenshotAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Concerns/MakesScreenshotAssertions.php -------------------------------------------------------------------------------- /src/Api/Concerns/MakesUrlAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Concerns/MakesUrlAssertions.php -------------------------------------------------------------------------------- /src/Api/From.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/From.php -------------------------------------------------------------------------------- /src/Api/Livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Livewire.php -------------------------------------------------------------------------------- /src/Api/On.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/On.php -------------------------------------------------------------------------------- /src/Api/PendingAwaitablePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/PendingAwaitablePage.php -------------------------------------------------------------------------------- /src/Api/TestableLivewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/TestableLivewire.php -------------------------------------------------------------------------------- /src/Api/Webpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Api/Webpage.php -------------------------------------------------------------------------------- /src/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Autoload.php -------------------------------------------------------------------------------- /src/Browsable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Browsable.php -------------------------------------------------------------------------------- /src/Cleanables/Inertia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Cleanables/Inertia.php -------------------------------------------------------------------------------- /src/Cleanables/Livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Cleanables/Livewire.php -------------------------------------------------------------------------------- /src/Cleanables/Ziggy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Cleanables/Ziggy.php -------------------------------------------------------------------------------- /src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Configuration.php -------------------------------------------------------------------------------- /src/Contracts/Cleanable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Contracts/Cleanable.php -------------------------------------------------------------------------------- /src/Contracts/HttpServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Contracts/HttpServer.php -------------------------------------------------------------------------------- /src/Contracts/PlaywrightServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Contracts/PlaywrightServer.php -------------------------------------------------------------------------------- /src/Drivers/LaravelHttpServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Drivers/LaravelHttpServer.php -------------------------------------------------------------------------------- /src/Drivers/NullableHttpServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Drivers/NullableHttpServer.php -------------------------------------------------------------------------------- /src/Enums/AccessibilityIssueLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Enums/AccessibilityIssueLevel.php -------------------------------------------------------------------------------- /src/Enums/BrowserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Enums/BrowserType.php -------------------------------------------------------------------------------- /src/Enums/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Enums/City.php -------------------------------------------------------------------------------- /src/Enums/ColorScheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Enums/ColorScheme.php -------------------------------------------------------------------------------- /src/Enums/Device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Enums/Device.php -------------------------------------------------------------------------------- /src/Exceptions/BrowserAlreadyClosedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Exceptions/BrowserAlreadyClosedException.php -------------------------------------------------------------------------------- /src/Exceptions/BrowserExpectationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Exceptions/BrowserExpectationFailedException.php -------------------------------------------------------------------------------- /src/Exceptions/BrowserNotSupportedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Exceptions/BrowserNotSupportedException.php -------------------------------------------------------------------------------- /src/Exceptions/OptionNotSupportedInParallelException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Exceptions/OptionNotSupportedInParallelException.php -------------------------------------------------------------------------------- /src/Exceptions/PlaywrightNotInstalledException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Exceptions/PlaywrightNotInstalledException.php -------------------------------------------------------------------------------- /src/Exceptions/PlaywrightOutdatedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Exceptions/PlaywrightOutdatedException.php -------------------------------------------------------------------------------- /src/Exceptions/PortNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Exceptions/PortNotFoundException.php -------------------------------------------------------------------------------- /src/Exceptions/ServerNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Exceptions/ServerNotFoundException.php -------------------------------------------------------------------------------- /src/Execution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Execution.php -------------------------------------------------------------------------------- /src/Filters/UsesBrowserTestCaseMethodFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Filters/UsesBrowserTestCaseMethodFilter.php -------------------------------------------------------------------------------- /src/GlobalState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/GlobalState.php -------------------------------------------------------------------------------- /src/Playwright/Browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/Browser.php -------------------------------------------------------------------------------- /src/Playwright/BrowserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/BrowserFactory.php -------------------------------------------------------------------------------- /src/Playwright/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/Client.php -------------------------------------------------------------------------------- /src/Playwright/Concerns/InteractsWithPlaywright.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/Concerns/InteractsWithPlaywright.php -------------------------------------------------------------------------------- /src/Playwright/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/Context.php -------------------------------------------------------------------------------- /src/Playwright/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/Element.php -------------------------------------------------------------------------------- /src/Playwright/InitScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/InitScript.php -------------------------------------------------------------------------------- /src/Playwright/JSHandle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/JSHandle.php -------------------------------------------------------------------------------- /src/Playwright/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/Locator.php -------------------------------------------------------------------------------- /src/Playwright/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/Page.php -------------------------------------------------------------------------------- /src/Playwright/Playwright.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/Playwright.php -------------------------------------------------------------------------------- /src/Playwright/Servers/AlreadyStartedPlaywrightServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/Servers/AlreadyStartedPlaywrightServer.php -------------------------------------------------------------------------------- /src/Playwright/Servers/PlaywrightNpmServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Playwright/Servers/PlaywrightNpmServer.php -------------------------------------------------------------------------------- /src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Plugin.php -------------------------------------------------------------------------------- /src/ServerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/ServerManager.php -------------------------------------------------------------------------------- /src/Support/AccessibilityFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/AccessibilityFormatter.php -------------------------------------------------------------------------------- /src/Support/BrowserTestIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/BrowserTestIdentifier.php -------------------------------------------------------------------------------- /src/Support/ComputeUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/ComputeUrl.php -------------------------------------------------------------------------------- /src/Support/GuessLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/GuessLocator.php -------------------------------------------------------------------------------- /src/Support/ImageDiffView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/ImageDiffView.php -------------------------------------------------------------------------------- /src/Support/JavaScriptSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/JavaScriptSerializer.php -------------------------------------------------------------------------------- /src/Support/PackageJsonDirectory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/PackageJsonDirectory.php -------------------------------------------------------------------------------- /src/Support/Port.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/Port.php -------------------------------------------------------------------------------- /src/Support/Screenshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/Screenshot.php -------------------------------------------------------------------------------- /src/Support/Selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/Selector.php -------------------------------------------------------------------------------- /src/Support/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/Shell.php -------------------------------------------------------------------------------- /src/Support/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/src/Support/Str.php -------------------------------------------------------------------------------- /testbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/testbench.yaml -------------------------------------------------------------------------------- /tests-examples/demo-todo-app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/tests-examples/demo-todo-app.spec.js -------------------------------------------------------------------------------- /workbench/app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/workbench/app/Models/User.php -------------------------------------------------------------------------------- /workbench/app/Providers/WorkbenchServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/workbench/app/Providers/WorkbenchServiceProvider.php -------------------------------------------------------------------------------- /workbench/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/workbench/bootstrap/app.php -------------------------------------------------------------------------------- /workbench/database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/workbench/database/factories/UserFactory.php -------------------------------------------------------------------------------- /workbench/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/workbench/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /workbench/resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workbench/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/workbench/routes/console.php -------------------------------------------------------------------------------- /workbench/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pestphp/pest-plugin-browser/HEAD/workbench/routes/web.php --------------------------------------------------------------------------------