Blog

Insights, tutorials, and thoughts on web development and technology.

Navigating Pages in Laravel Dusk and Invoking Methods

Navigating Pages in Laravel Dusk and Invoking Methods

In the previous article we learned about Concept of Pages and Generating New Page in Dusk. Let's dig more into pages to see how we can create custom methods and visit a page. Navigate to Page Once y...

Feb 18, 2019 · Tushar
Pages in Laravel Dusk and Generating a new Page

Pages in Laravel Dusk and Generating a new Page

Laravel Dusk has a concept of page which helps you organize your browser automation tests. When you are working with a browser test and if the functionality / feature to be tested is complex that span...

Feb 18, 2019 · Tushar
Using Laravel's dd (dump and die) function in PHP

Using Laravel's dd (dump and die) function in PHP

One of the most common ways to debug an error in PHP ecosystem is to dump the variable on the screen, and figure out what is going wrong with it. The most common way we do it in PHP is via using va...

Feb 16, 2019 · Tushar