Help for this page

Select Code to Download


  1. or download this
    sub WaitforDone{
        my $self = shift;
        my $agent = $self->{agent};
    ...
            sleep 1;
        }
    }
    
  2. or download this
    sub Win32::IEAutomation::WaitforDoneTimeout {
        my( $self, $timeout ) = @_;
    ...
        }
        return "nuclear explosion";
    }
    
  3. or download this
    sub Click{
        my ($self, $nowait) = @_;
        $self->{element}->click;
        $self->{parent}->WaitforDone unless $nowait;
    }