PHPackages                             tranquil-tools/laravel-pest-recorder - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Testing &amp; Quality](/categories/testing)
4. /
5. tranquil-tools/laravel-pest-recorder

ActiveLibrary[Testing &amp; Quality](/categories/testing)

tranquil-tools/laravel-pest-recorder
====================================

Laravel Pest Browsertest Recorder

1.0.3(1mo ago)1454↓91.1%1MITPHPPHP ^8.4CI passing

Since Mar 5Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/ComfyCodersBV/laravel-pest-recorder)[ Packagist](https://packagist.org/packages/tranquil-tools/laravel-pest-recorder)[ Docs](https://github.com/comfycodersbv/laravel-pest-recorder)[ RSS](/packages/tranquil-tools-laravel-pest-recorder/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (36)Versions (5)Used By (0)

Laravel Pest Browsertest Recorder
=================================

[](#laravel-pest-browsertest-recorder)

This package introduces the `php artisan pest:record` command which provides an interactive way to generate a base for your Pest Browsertests.

Running this command allows you to perform actions in the browser which will be translated into Pest tests. This process works by using the `npx playwirght codegen` command. You can use the Codegen toolbar to add assertions:

[![Playwright Codegen toolbar (assertions)](art/playwright-codegen-toolbar.png)](art/playwright-codegen-toolbar.png)

By default, a development server (`php artisan serve`) will be started, this can be disabled with the `--server=false` flag.

After closing the browser you'll be prompted with a question if you want to expand an existing test file or create a new one, and to give your new test a name:

[![Laravel Pest Recorder CLI output / questions](art/pest-recorder-cli-output.png)](art/pest-recorder-cli-output.png)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require tranquil-tools/laravel-pest-recorder --dev
```

You can publish the config file with:

```
php artisan vendor:publish --tag="laravel-pest-recorder-config"
```

The content of the published config can be viewed [here](./config/pest-recorder.php).

Usage
-----

[](#usage)

```
php artisan pest:record

```

or:

```
php artisan pest:record
    --env=testing
    --url=http://localhost:8001
    --visit=/login
    --acting-as=user
    --server=true
    --migrate-fresh=false
    --seed=false
    --viewport-size=fullscreen

```

Available flags / options
-------------------------

[](#available-flags--options)

The environment variable, obliged when using --migrate-fresh=true

```
--env=testing

```

Provide a URL which will be opened in the browser as starting point for your tests. When omitted, your .env APP\_URL setting will be used.

```
--url=http://localhost:8001

```

Open a specific URI path when the recording browser starts. The path is appended to the base URL. The initial navigation will automatically generate `$page = visit('/...');` in the test.

```
--visit=/login

```

Record and store Playwright browser auth state under a named key (e.g. `user`). The state is saved to `storage/app/tmp/auth/{name}.json` (configurable via `acting_as_storage_path` in the config).

- **First run (no file yet):** you will be prompted to record a login sequence. A browser opens at `acting_as_login_path` (default `/login`); log in and close it — the browser storage state is saved.
- **Subsequent runs (file exists):** the saved state is loaded automatically, so the browser starts pre-authenticated, and you can skip straight to recording the feature you want to test.
- **Generated test:** `$this->actingAs(\App\Models\User::factory()->create());` is prepended to the `it()` block. Authentication during the actual test run is handled by Laravel's `actingAs()`, not by replaying browser login steps.

```
it('test name', function () {
    $this->actingAs(\App\Models\User::factory()->create());

    $page = visit('/dashboard');
    $page->assertSee('...');
});
```

```
--acting-as=user

```

Start a development server (php artisan serve) for the given environment, URL and port.

```
--server=true

```

Run `php artisan migrate:fresh` before starting the server? Specifying --env=... is mandatory.

```
--migrate-fresh=false

```

Seed the database after migrate:fresh? This option is only available when using `--migrate-fresh=true`.

```
--seed=false

```

Set the viewport dimensions, or use `fullscreen` (the default) to detect the primary screen resolution. Detected via `system_profiler` (macOS), `xdpyinfo`/`xrandr` (Linux), or PowerShell (Windows). Falls back to `1920,1080` if detection fails. Ignored when `--device` is set.

```
--viewport-size=fullscreen  (default)
--viewport-size=1280,720

```

Emulate a specific device, including its viewport, user agent and touch settings. Overrides `--viewport-size`. Run `npx playwright codegen --help` for the full list of supported device names.

```
--device="iPhone 15"
--device="Pixel 7"

```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Pull requests are welcome!

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [ComfyCoders BV](https://github.com/comfycodersbv) -

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

45

—

FairBetter than 91% of packages

Maintenance91

Actively maintained with recent releases

Popularity16

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~30 days

Total

4

Last Release

44d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/262353729?v=4)[ComfyCoders BV](/maintainers/comfycoders-development)[@comfycoders-development](https://github.com/comfycoders-development)

---

Top Contributors

[![J87NL](https://avatars.githubusercontent.com/u/16107428?v=4)](https://github.com/J87NL "J87NL (23 commits)")

---

Tags

laravelComfyCoders BVlaravel-pest-recorder

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/tranquil-tools-laravel-pest-recorder/health.svg)

```
[![Health](https://phpackages.com/badges/tranquil-tools-laravel-pest-recorder/health.svg)](https://phpackages.com/packages/tranquil-tools-laravel-pest-recorder)
```

###  Alternatives

[spatie/laravel-permission

Permission handling for Laravel 12 and up

12.9k102.4M1.4k](/packages/spatie-laravel-permission)[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.1k11.2M100](/packages/dedoc-scramble)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

816333.8k3](/packages/defstudio-telegraph)[spatie/laravel-passkeys

Use passkeys in your Laravel app

471890.7k39](/packages/spatie-laravel-passkeys)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
