Zennolab.CommandCenter
Document Class
Members  Example  See Also  Send Feedback
Zennolab.CommandCenter Namespace : Document Class
Represents a document on a Web page. Contains the methods to search for html elements, gets or sets of values.

Object Model

Document ClassHtmlElement ClassHtmlElement ClassHtmlElementCollection ClassHtmlElement ClassHtmlElement ClassTab Class

Syntax

C# 
public class Document 

Example

This example uses the Document object to search for html elements and setting their values​​.
C#Copy Code
using System;
using System.Drawing;
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();
 
            Document doc = tab.MainDocument;
            
            HtmlElement he = doc.FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
            
            if (he.IsVoid) return -1;
            
            he.SetValue("true", true);
            
            he = doc.FindElementByName("rad");
            
            if (he.IsVoid) return -1;
 
            he.SetValue("0", true);
 
            return 0;
        }
    }
}
PHPCopy Code
<?php
import namespace System;
import namespace Zennolab:::CommandCenter;
 
class Step1
{
    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();
        
        $doc = $tab->MainDocument;
            
        $he = $doc->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
            
        if ($he->IsVoid) return -1;
            
        $he->SetValue("true", true);
            
        $he = $doc->FindElementByName("rad");
            
        if ($he->IsVoid) return -1;
 
        $he->SetValue("0", true);
        
        return 0;
    }
}
?>

Remarks

This class does not contain constructors.The documents is available only from the Tab object or the Instance object. The Document class contain the properties such as ErrorDetected, IsNull and IsVoid. Their use necessary for the correct work of your code.

Inheritance Hierarchy

System.Object
   Zennolab.CommandCenter.Document

Requirements

Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2011 All Rights Reserved.