To be able to complete my test I have to select an option of a select within a table with datatable ( link ) but laravel dusk does not find the element:
I try to select the select option in this way in the test:
$browser->with('#tabla_excel', function ($table) {
$table->select('#select_0', '1');
});
This is how my table looks like, which has the id 'tabla_excel' and the select has assigned the id 'select_0':