Forum Discussion
Adrian_Tankard
12 years agoContributor
Hi Morten,
Have a look at information about error handling.
Your issue should be easily solved.
If you are using VBScript your code may look something like:
On Error Resume Next
If Sys.WaitBrowser()...
' Do stuff
end if.
if Err.Number <> 0 then
' Check if next page exists
end if
On Error goto 0
Have a look at information about error handling.
Your issue should be easily solved.
If you are using VBScript your code may look something like:
On Error Resume Next
If Sys.WaitBrowser()...
' Do stuff
end if.
if Err.Number <> 0 then
' Check if next page exists
end if
On Error goto 0