Select item within datatable with laravel dusk

1

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':

    
asked by Francisco Quijada 17.04.2018 в 21:57
source

0 answers