<?xml version="1.0"?>
<!DOCTYPE sim SYSTEM "file:sim.dtd">
<sim>

    <info>
        <name      uid="1234">Sim for BORG111</name>
        <version   num="1"/>
        <note>aaa sss ddd</note>
    
        
    </info>
    
    <code>
    
        <set name="Variable" value="10"/>
        <set name="zoat" value="-1"/>
        <set name="zoatAGAIN" value="$zoat$"/>
        <add name="Variable" value="2"/>
        
        <header name="HTTP Header" value="some header for everything..."/>
                    
        <get qs="/goat/testsite/doc$zoat$.html?zip=1"></get>
            <verify crc="2774091" size="7361">
                <seek string="h1 header one in html doc"/>
                <seek string="h1 keep seeking from where we left off from last seek"/>
            </verify>
            <verify>
                <seek string="start searching from top of te doc, because it is a new verify context"/>
            </verify>                  
        
        <block> 
            
            <set name="Wibble" value="This var will only be around within this block"/> 
     
            <nv name="goat">blah blag form data *zOt*</nv>            
            

        
        </block>

        <set name="waitVal" value="10000"/>
        <wait time="1000"/>
        <wait time="$waitVal$"/>   
        <add name="waitVal" value="20000"/>
        <wait time="$waitVal$0"/>  
        
        <for count="countVar" init="10">
            <add name="countVar" value="-1"/> 
        </for>

        <if e="$zoat$" value="-1">
           
        </if>
        
        <set name="continueVar" value="1"/>
        <while e="$continueVar$" value="1">

        </while>
        
    
    </code>
    
</sim>
