notta Posted December 10, 2008 Posted December 10, 2008 (edited) I'm dealing with a page that has a text field and 2 buttons, but neither button has a name, ID or value assigned to them. This is not my page, so I have no control over the syntax they used. <button type="button" onclick="One()">Button 1</button> <button type="button" onclick="Two()">Button 2</button> On each run I'm going to click one or the other of the buttons, so I need to find a way to distinguish between the two. The following code has an output of "button, button" in the console. DebugBar just returns the line above. #include <IE.au3> $oIE = _IECreate ("page.html") $oButtons = _IETagNameGetCollection($oIE, "button") For $oButton In $oButtons ConsoleWrite($oButton.Type & @CRLF) Next Any help would be appreciated. Edited December 10, 2008 by notta
PsaltyDS Posted December 10, 2008 Posted December 10, 2008 I'm dealing with a page that has a text field and 2 buttons, but neither button has a name, ID or value assigned to them. This is not my page, so I have no control over the syntax they used. <button type="button" onclick="One()">Button 1</button> <button type="button" onclick="Two()">Button 2</button> On each run I'm going to click one or the other of the buttons, so I need to find a way to distinguish between the two. The following code has an output of "button, button" in the console. DebugBar just returns the line above. #include <IE.au3> $oIE = _IECreate ("page.html") $oButtons = _IETagNameGetCollection($oIE, "button") For $oButton In $oButtons ConsoleWrite($oButton.Type & @CRLF) Next Any help would be appreciated. Check the innertext property: ConsoleWrite($oButton.innertext & @CRLF) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now