public static int Execute(Instance instance, IZennoPosterProjectModel project)
{
// clear cookie
instance.ClearCookie();
// go to lessons.zennolab.com
Tab tab = instance.MainTab;
if ((tab.IsVoid) || (tab.IsNull)) return -1;
if (tab.IsBusy) tab.WaitDownloading();
tab.Navigate("lessons.zennolab.com", "");
if (tab.IsBusy) tab.WaitDownloading();
// find element using "text" parameter
HtmlElement he = tab.MainDocument.FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
if (he.IsVoid) return -1;
// set value
he.SetValue("True", instance.EmulationLevel, false);
// find element using "regexp" parameter
he = tab.MainDocument.FindElementByAttribute("input:radio", "fulltag", "input:radio", "regexp", 0);
if (he.IsVoid) return -1;
// set value
he.SetValue("0", instance.EmulationLevel, false);
// find element using "notext" parameter
he = tab.MainDocument.FindElementByAttribute("textarea", "top", "288", "notext", 0);
if (he.IsVoid) return -1;
// set value
he.SetValue("simple text", instance.EmulationLevel, false);
return 0;
}
public static function Execute($instance, $project)
{
// clear cookie
$instance->ClearCookie();
// go to lessons.zennolab.com
$tab = $instance->MainTab;
if (($tab->IsVoid) || ($tab->IsNull)) return -1;
if ($tab->IsBusy) $tab->WaitDownloading();
$tab->Navigate("lessons.zennolab.com", "");
if ($tab->IsBusy) $tab->WaitDownloading();
// find element using "text" parameter
$he = $tab->MainDocument->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
if ($he->IsVoid) return -1;
// set value
$he->SetValue("True", $instance->EmulationLevel, false);
// find element using "regexp" parameter
$he = $tab->MainDocument->FindElementByAttribute("input:radio", "fulltag", "input:radio", "regexp", 0);
if ($he->IsVoid) return -1;
// set value
$he->SetValue("0", $instance->EmulationLevel, false);
// find element using "notext" parameter
$he = $tab->MainDocument->FindElementByAttribute("textarea", "top", "288", "notext", 0);
if ($he->IsVoid) return -1;
// set value
$he->SetValue("simple text", $instance->EmulationLevel, false);
return 0;
}