Jump to content

Problem in version 3.3.14.2 - Important


 Share

Recommended Posts

Hi

AutoIT installed in version 3.3.12 on my computer and created a scrip which has a function that takes an element in the web page and click this element. Follows the code below:

Local $aArray[9] = [$oElement.id, $oElement.name, $oElement.type, $oElement.value, $oElement.href, $oElement.src, $oElement.alt, $oElement.innertext, $oElement.className]
For $i = 0 To UBound($aArray) - 1
    
    ; checks that element attribute has the value I want
    If String($aArray[$i]) == $value Then
        
        _IEAction($oElement, "click")
        ExitLoop

    EndIf

Next

My code functioned normally until I upgrade my AutoIT to version 3.3.14.2. Before starting my script already returns me the following error:

The requested action with this object has failed.:

The strange thing is that each execution it returns this error to a different attribute of the array. In an attempt to display the error in more detail I used the $ oMyError = objEvent ("AutoIt.Error", "MyErrFunc") which is known to those who develop scripts.

When I use the function MyErrFunc my script starts to work, but when she shot it starts operating normally. To be even stranger if I put any function as a parameter in the call objEvent ("AutoIt.Error", "") my script back to work, but it does not work without it.

I have no idea what's going on, does anyone know how to help me? This may be a bug in the new version?

Thank you

Edited by Israel
Amended title
Link to comment
Share on other sites

  • Developers

For starters: It would be nice when you first search for similar reports and then post something that would reproduce any possible bug when ran.
So start with doing a search and let us know when you really can't find a previous reported issue with IE.AU3.

 

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

A terribly wrong place to place private includes, BTW.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...