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 elements by tag
HtmlElementCollection heCol = tab.FindElementsByTags("input:checkbox");
if ((heCol.IsVoid) || (heCol.ErrorDetected)) return -1;
// find elements by tag
HtmlElementCollection newHeCol = tab.FindElementsByTags("input:radio");
if ((newHeCol.IsVoid) || (newHeCol.ErrorDetected)) return -1;
// insert second collection to first
heCol.InsertRange(newHeCol.Elements, 0);
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 elements by tag
$heCol = $tab->FindElementsByTags("input:checkbox");
if (($heCol->IsVoid) || ($heCol->ErrorDetected)) return -1;
// find elements by tag
$newHeCol = $tab->FindElementsByTags("input:radio");
if (($newHeCol->IsVoid) || ($newHeCol->ErrorDetected)) return -1;
// insert second collection to first
$heCol->InsertRange($newHeCol->Elements, 0);
return 0;
}