Adds a html element to the end of the
HtmlElementCollection.
Syntax
Example
The following code example demonstrates uses of the
Add method. At first we take all html elements from page
lessons.zennolab.com with tags "input:checkbox" then all html elements with tags "input:radio" and store in a collection
HtmlElementCollection.
| C# | Copy Code |
|---|
using System;
using ZennoLab.CommandCenter;
namespace Sample
{
internal class Example
{
public static int Execute(Instance instance)
{
instance.ClearCookie();
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();
HtmlElementCollection heCol = tab.FindElementsByTags("input:checkbox");
HtmlElementCollection newHeCol = tab.FindElementsByTags("input:radio");
for (int i = 0; i < newHeCol.Count; i++)
{
heCol.Add(newHeCol.Elements[i]);
}
return 0;
}
}
} |
| PHP | Copy Code |
|---|
<?php
namespace System;
namespace ZennoLab\CommandCenter;
class Example
{
public static function Execute($instance)
{
$instance->ClearCookie();
$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();
$heCol = $tab->FindElementsByTags("input:checkbox");
$newHeCol = $tab->FindElementsByTags("input:radio");
for ($i = 0; $i < $newHeCol->Count; $i++)
{
$heCol->Add($newHeCol->Elements[$i]);
}
return 0;
}
}
?> |
Requirements
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven
See Also