Jump to content

Recommended Posts

Posted

i have this script

do

$line = FileReadLine($file)

Sleep(5000)

If @error = -1 Then ExitLoop

_IEFormElementSetValue ($oText, $line )

_IEImgClick ($oIE, "image.gif", "src" )

$sHTML = _IEBodyReadHTML ($oIE)

$aArray1 = _StringBetween ( $sHTML , 'aaa' , "bbb" )

MsgBox(0, "good",$aArray1[1])

until $aArray1[1] = 'good'

but the loop does not stop even that i see in the msgbox the right answer

any ides?

Posted

Try it like this to see if you should be expecting it at the second match '$aArray1[1]':

#include <array.au3> ; For _ArrayDisplay() only

;...

Do
    ;...
    $sHTML = _IEBodyReadHTML($oIE)
    $aArray1 = _StringBetween($sHTML, 'aaa', "bbb")
    If @error Then
        MsgBox(16, "Error", "_StringBetween() did not find a match.")
    Else
        _ArrayDisplay($aArray1, "Debug: " & UBound($aArray1) & " matches found.")
    EndIf
Until $aArray1[1] = 'good'

<_<

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...