Jump to content

Search the Community

Showing results for tags 'treenode'.

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

  1. Hi Everyone, due to email system migration, I am trying to automate the email forwarding per account basis on webmail. The action required for each user is: 1. Logging in to webmail for the user 2. Click on the "Options" link 3. On the pop-up box, click on "Mail", then "Forwarding" (Screen shot provided) 4. Followed by keying in the forwarding details. I am stuck on step 3. It appears that the links for "Mail" and "Forwarding" are javascript and not real links. I do not have any programming and development experience and just started with AutoIT 2 weeks back just for this specific task. The source for the page is here, it looks like the part that i should be focusing on is : It seems like the part i should be focusing on is here: options_items.push({ 'id' : 'forward', 'label' : localevar.get('Forwarding'), 'url' : '/cgi-bin/euadmin.cgi/eup/forward.html', 'pName' : 'mail' }); After searching the forum and reading the help file, I have attempted at least the following: 1. _IENavigate - fail as the URL is special for each logged in session 2. _IELinkClickByText - failed as no link is found ( i used _IELinkGetCollection = 0 link found) 3. IETableGetCollection - only found 2 tables and its only for the right hand pane of the page. 4. IEPropertyGet 'innertext' - no errors, but no clicking actions 5. _IETagNameAllGetCollection - Found Tagname: DIV, ID: dijit__TreeNode_10, innertext: * Forwarding but not able to use these information to get autoit to click. 6. _IEImgGetCollection - Found 41 instances of *blank.gif, tried to randomly click an index of gif, but no visible actions being done. My code is here, it is heavily commented out by the past attempts, so it must be hard to read, apologies in advance. The trouble begins at line 82. Any help or advice is greatly appreciated.
×
×
  • Create New...