Jump to content

clicking a certain number in IE


Recommended Posts

this is what it looks like in IE

Posted Image

it tells you to click a certain number and i was wondering if there is a way to send a command to click it.......it changes every time the page is refreshed :)

here is the source of the box

<tr class=tb1 align=center><td> <a href=i.cfm?&8sho&f=lock&ln=1> 1 </a> </td><td> <a href=i.cfm?&8sho&f=lock&ln=2> 2 </a> </td><td> <a href=i.cfm?&8sho&f=lock&ln=3> 3 </a> </td><td> <a href=i.cfm?&8sho&f=lock&ln=4> 4 </a> </td></tr>
<tr class=tb1 align=center><td> <a href=i.cfm?&8sho&f=lock&ln=5> 5 </a> </td><td> <a href=i.cfm?&8sho&f=lock&ln=6> 6 </a> </td><td> <a href=i.cfm?&8sho&f=lock&ln=7> 7 </a> </td><td> <a href=i.cfm?&8sho&f=lock&ln=8> 8 </a> </td>
</tr>
<tr class=tb1 align=center><td> <a href=i.cfm?&8sho&f=lock&ln=9> 9 </a> </td><td> <a href=i.cfm?&8sho&f=lock&ln=10> 10 </a> </td><td> <a href=i.cfm?&8sho&f=lock&ln=11> 11 </a> </td><td> <a href=i.cfm?&8sho&f=lock&ln=12> 12 </a> </td>

i want to add this to another script i have so that if it ever sees the page that it needs to click numbers it will find it and click it

#include <IE.au3>
while 1
sleep(306000)
$oIE = _IEAttach("[SFU]")
$oInputs = _IETagNameGetCollection($oIE, "input")
For $oInput in $oInputs
    If String($oInput.value) = " Dig!!  " Then
        _IEAction($oInput, "click")
        ExitLoop
    EndIf
Next
_IELoadWait($oIE)
wend
Link to comment
Share on other sites

_IELinkClickByText($oIE, " 3 ")

Dale

Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl

MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model

Automate input type=file (Related)

Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded  Better Better?

IE.au3 issues with Vista - Workarounds

SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y

Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead?

Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble

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...