Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gmanikandan-dev/book-ticket-laradusk

Laravel Dusk provides an expressive, easy-to-use browser automation and testing API. By default, Dusk does not require you to install JDK or Selenium on your local computer. Instead, Dusk uses a standalone ChromeDriver installation.
https://github.com/gmanikandan-dev/book-ticket-laradusk

Last synced: about 1 month ago
JSON representation

Laravel Dusk provides an expressive, easy-to-use browser automation and testing API. By default, Dusk does not require you to install JDK or Selenium on your local computer. Instead, Dusk uses a standalone ChromeDriver installation.

Awesome Lists containing this project

README

        

## Book Ticket LaraDusk

- Actually, the project aim is to book IRCTC train tickets.

- Here, I have tested the laravel Jetstream Register,Logout,Login using laravel dusk and remains will update soon.

To test entire class

````
php artisan dusk

````

You can test single **class** by below command

````
php artisan dusk --filter AuthTest

````

You can test single **function/method** by below command

````
php artisan dusk --filter testRegister tests/Browser/AuthTest.php

````