在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):nunomaduro/laravel-console-dusk开源软件地址(OpenSource Url):https://github.com/nunomaduro/laravel-console-dusk开源编程语言(OpenSource Language):PHP 100.0%开源软件介绍(OpenSource Introduction):About Laravel Console DuskLaravel Console Dusk was created by, and is maintained by Nuno Maduro, and allows the usage of Laravel Dusk in Laravel/Laravel Zero artisan commands. Installation
Require Laravel Console Dusk using Composer: composer require nunomaduro/laravel-console-dusk The package provide a config file that allows you to configure some options. return [
/*
|--------------------------------------------------------------------------
| Laravel Console Dusk Paths
|--------------------------------------------------------------------------
|
| Here you may configure the name of screenshots and logs directory as you wish.
*/
'paths' => [
'screenshots' => storage_path('laravel-console-dusk/screenshots'),
'log' => storage_path('laravel-console-dusk/log'),
],
]; You can publish the config file using the following artisan command: php artisan vendor:publish --provider="NunoMaduro\LaravelConsoleDusk\LaravelConsoleDuskServiceProvider" --tag="config" Usageclass VisitLaravelZeroCommand extends Command
{
/**
* Execute the console command.
*
* @return void
*/
public function handle()
{
$this->browse(function ($browser) {
$browser->visit('http://laravel-zero.com')
->assertSee('100% Open Source');
});
}
} Check how use Laravel Dusk here. ContributingThank you for considering to contribute to Laravel Console Dusk. All the contribution guidelines are mentioned here. You can have a look at the CHANGELOG for constant updates & detailed information about the changes. You can also follow the twitter account for latest announcements or just come say hi!: @enunomaduro Support the developmentDo you like this project? Support it by donating LicenseLaravel Console Dusk is an open-sourced software licensed under the MIT license. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论