Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Last active May 31, 2020 06:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/b5a380b0a5995d34e801512b2e7a32bf to your computer and use it in GitHub Desktop.
Save uno-de-piera/b5a380b0a5995d34e801512b2e7a32bf to your computer and use it in GitHub Desktop.
<?php
namespace Tests\Browser;
use Laravel\Dusk\Browser;
use Tests\DuskTestCase;
use Laravel\Dusk\Chrome;
use Illuminate\Foundation\Testing\DatabaseMigrations;
class LoginTest extends DuskTestCase
{
public function testIsLoginPage()
{
$this->browse(function (Browser $browser) {
$browser->visit('/login')
->assertTitle('Laravel')
->assertSee('Forgot Your Password?');
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment