Всем привет.
Задача: нужно на php сделать бота, который входит в аккаунт и проверяет статус заказа.
пытаюсь с помощью Goutte. но увы. любые идеи?
require ('vendor/autoload.php');
use Goutte\Client;
$client = new Client();
$html = $client->request('GET', 'https://www.amazon.com/');
$html = $client->click($html->selectLink('Sign in')->link());
sleep(mt_rand(1, 3));
$form = $html->selectButton('continue')->form();
$html = $client->submit($form, array('email' => 'scorpiolaboratory@gmail.com'));
if($html->filter('.a-box-inner .a-alert-heading')->first()->text() == 'There was a problem')
{
die('wrong email');
}
sleep(mt_rand(1, 3));
$form = $html->selectButton('signInSubmit')->form();
$html = $client->submit($form, array('password' => 'XXXXXX'));
далее не идет. при попытке ввести пароль выходит сообщение об ошибке: Enter a valid email or mobile number