Issue
I am writing some tests and I want to see whether Dusk correctly fills in the input fields but Dusk doesn't show the browser while running the tests, is there any way to force it to do that?
Solution
Disable the headless mode in tests\DuskTestCase.php
file driver()
function:
$options = (new ChromeOptions)->addArguments([
//'--disable-gpu',
//'--headless'
]);
Answered By - Jonas Staudenmeir
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.