Jump to content

Search the Community

Showing results for tags '_IEFormElementGetObjByName'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 2 results

  1. I am working on a form that is dynamic which may appear up to 8 or 15 fields. gridText$ct1 gridText$ct2 gridText$ct3 gridText$ct4 .... .... .... Local $oTextC10 = _IEFormElementGetObjByName($oForm2, "gridText$ct10") $oText10 = _IEFormElementGetValue($oTextC10) I do not want presents this error... --> IE.au3 T3.0-1 Warning from function _IEFormElementGetObjByName, $_IESTATUS_NoMatch --> IE.au3 T3.0-1 Error from function _IEFormElementGetValue, $_IESTATUS_InvalidDataType How can I solve this problem?!
  2. Hey guys, I'm currently trying to hone my skills a bit more by manipulating the IE functions to submit data on webpages. I think this would be much more effective then using movemouse, or mouseclick etc... However I cannot even get the sample code to work myself listed in a few _IE examples such as _IEFormElementGetObjByName. code reproduced here: ; ******************************************************* ; Example 1 - Get a reference to a specific form element by name. ; In this case, submit a query to the Google search engine ; ******************************************************* #include <IE.au3> Local $oIE = _IECreate("http://www.google.com") Local $oForm = _IEFormGetObjByName($oIE, "f") Local $oQuery = _IEFormElementGetObjByName($oForm, "q") _IEFormElementSetValue($oQuery, "AutoIt IE.au3") _IEFormSubmit($oForm) When I run the code i recieve these errors: --> IE.au3 V2.4-0 Warning from function _IEFormGetObjByName, $_IEStatus_NoMatch --> IE.au3 V2.4-0 Error from function _IEFormElementGetObjByName, $_IEStatus_InvalidDataType --> IE.au3 V2.4-0 Error from function _IEFormElementSetValue, $_IEStatus_InvalidDataType --> IE.au3 V2.4-0 Error from function _IEFormSubmit, $_IEStatus_InvalidDataType I've spent hours trying to find a solution even considering changing the f and q to the names i found digging around on the google website, even utilizing _IELoadWait, however i recieved the same errors. If not maybe theres another method to accomplish something like this?
×
×
  • Create New...