Category : Laravel-Dusk

In your test many times you will need to check if a particular element exists on the page and you would want to make it your assertion point. You might need to do this when you are generating the elem...
Read Article
Taking Screenshots are a great way to go over what went wrong in your automation test. In this tutorial we will go over on how you can store the screenshots of where your test failed or of any desired...
Read Article
By Default Laravel Dusk runs the browser automation test in headless mode of Google Chrome. If you are not sure what headless denotes A headless browser is a web browser without a graphical user inte...
Read Article
Now that we are ready with Laravel Dusk setup, we will go over on how to run the Laravel Dusk test. For laravel dusk to be able to run the browser automation test on your local environment, It need...
Read Article
To install Laravel Dusk on your project, Go to your terminal and navigate to the project root and all the following composer dependency by running the following command. composer require --dev larave...
Read Article