Код: Выделить всё
<?php
// The following code is required to properly run Xedant.com Human Emulator
require("../Templates/xedant_human_emulator.php");
$pass2="new_password";
$email="email";
$pass="password";
$browser->navigate('vkontakte.ru');
$browser->wait(1);
$input->set_value_by_name(email,$email);
$input->set_value_by_name(pass,$pass);
$anchor->click_by_inner_text("Вход",true);
$browser->wait(1);
$anchor->click_by_inner_text("Мои Настройки",true);
$browser->wait(1);
$input->set_value_by_name(old_password,$pass);
$input->set_value_by_name(new_password,$pass2);
$input->set_value_by_name(confirm_password,$pass2);
$anchor->click_by_inner_text("Изменить Пароль",true);
$browser->wait(1);
$anchor->click_by_inner_text("выйти",true);
$browser->wait(1);
// Quit
$app->quit();
?>
Код: Выделить всё
<?php
// The following code is required to properly run Xedant.com Human Emulator
require("../Templates/xedant_human_emulator.php");
$pass2="ueldrjynfrnt2";
$f=fopen("c://text.txt","r");
while (!feof($f))
{
$s=fgets($f,100);
$pos=strpos($s,':');
$email=substr($s,0,$pos);
$pass=substr($s,$pos+1);
$browser->navigate('vkontakte.ru');
$browser->wait(1);
$input->set_value_by_name(email,$email);
$input->set_value_by_name(pass,$pass);
$anchor->click_by_inner_text("Вход",true);
$browser->wait(1);
$anchor->click_by_inner_text("Мои Настройки",true);
$browser->wait(1);
$input->set_value_by_name(old_password,$pass);
$input->set_value_by_name(new_password,$pass2);
$input->set_value_by_name(confirm_password,$pass2);
$anchor->click_by_inner_text("Изменить Пароль",true);
$browser->wait(1);
$anchor->click_by_inner_text("выйти",true);
$browser->wait(1);
}
fclose($f);
// Quit
$app->quit();
?>
За ранее благодарен.