use Carbon\Carbon Problem InvalidArgumentException The current node list is empty

19 Views Asked by At

I have the next problema with this code, the last 5 month work with no problems.

$form = $crawler->selectButton('Ingresar')->form();
$form->setValues(['rut' => 'admin', 'password' => 'Pascual4900']);
$crawler = $client->submit($form);

This is the html from the page

<div class="login-container">
    <div class="input" style="cursor:text;" onclick="jQuery('input', this).focus();">
        <h5 style="margin:0">Usuario</h5>
        <input name="rut" type="text" style="font-size:18px;border:0;-webkit-box-shadow:0 0 0;-moz-box-shadow:0 0 0;box-shadow:0 0 0 inset;padding:10px 0 0 0;" placeholder="Escriba su usuario...">
    </div>
    <div class="input" style="cursor:text;" onclick="jQuery('input', this).focus();">
        <h5 style="margin:0">Clave</h5>
        <input name="password" type="password" style="font-size:18px;border:0;-webkit-box-shadow:0 0 0;-moz-box-shadow:0 0 0;box-shadow:0px 0px 0px inset;padding:10px 0 0 0;" placeholder="Escriba su clave...">
    </div>
    <input id="ingresar" onclick="submitForm()" name="ingresar" class="btn btn-success" style="width:390px;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important;text-align:center;font-size:18px;font-weight:bold;color:#fff;padding:20px 0;cursor:pointer;background-image:none;" value="Ingresar">
</div>

Thiis return this error

InvalidArgumentException The current node list is empty.

This function work perfecttly for one year and now is not working i neeed to submit the form with the scrapping package

0

There are 0 best solutions below