Jump to content

Search the Community

Showing results for tags 'cfm'.

  • 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

Categories

  • Forum FAQ
  • AutoIt

Calendars

  • Community Calendar

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 1 result

  1. Hello I am trying automating download a file from www.bea.gov I can easily bowse through the website and reach to the download link. But I am not able to initiate the download process. my code uptill now is #include <IE.au3> $oIE = _IECreate("http://www.bea.gov/itable/") _IELinkClickByText($oIE,"GDP & Personal Income",1) _IELinkClickByText($oIE,"Begin Using the Data...") Sleep(1000) _IELinkClickByText($oIE, "Personal income (SQ1)") Sleep(2000) $oForm = _IEFormGetObjByName($oIE, "myform7") $oSelect = _IEFormElementGetObjByName($oForm, "7026") _IEFormElementOptionSelect($oSelect, "Iowa", 1, "byText") $oSelect2 = _IEFormElementGetObjByName($oForm, "7027") _IEFormElementOptionSelect($oSelect2, "All Years", 1, "byText") Sleep(1000) _IEFormElementOptionSelect($oSelect2, "2011", 0, "byText") $oSelect3 = _IEFormElementGetObjByName($oForm, "7028") _IEFormElementOptionSelect($oSelect3, "Personal Income", 1, "byText") $AccountButton = _IEGetObjById($oIE,'goto7') _IEAction($AccountButton, "click") Sleep(2000) _IELinkClickByText($oIE, "Download") Sleep(1000) _IELinkClickByText($oIE, "Download XLS File") I may be running into the problem cause after I press Download button the screen freezez and a new pop up come asking me what kind of file i want to download. Any help in this problem will be appreciated. Thanks
×
×
  • Create New...