Search the Community
Showing results for tags '_iegetobjbyid'.
-
When I use _IEGetObjById to get form obj, it failed. My code works two month ago, but now there is some update in the website. The first page is OK wiht _IEGetObjById, but when goes to the second page, _IEGetObjById get error. The error is: IE.au3 T3.0-2 Warning from function _IEGetObjById...
-
Hi guys! I have these checkbox that I'm trying to click on. They have the same inner-text string but a different ID. Sometime there can be as many as 4 checkbox with the same string but the ID is always different. I tried a few methods down below but I'm unable to make any real results. Any sug...
- 6 replies
-
- checkbox
- event fire
-
(and 3 more)
Tagged with:
-
Howdy, I would like to find the screen coordinates (x, y) of an element within an IE browser so that I may be able to automate 'scrolling' of the browser window to that particular coordinate. I know I can use the '_IEGetObjByID' and '_IEGetObjByName' commands to return an 'object vari...
- 13 replies
-
- _iegetobjbyid
- _iegetobjbyname
-
(and 2 more)
Tagged with:
-
Hello guys, I need to bring up a MsgBox when the user clicks a button on the Internet Explorer page. This is the button on the HTML page: <button id="NOT_READY_BTN-btnEl" type="button" class="x-btn-center" hidefocus="true" disabled="disabled" role="button" autocomplete="off" data-qtip=...
-
_IEGetObjById and _IEGetObjByName functions use variable of an InternetExplorer.Application, Window or Frame object as reference to find any dom element. Is it possible to use a dom element instead of InternetExplorer.Application, Window or Frame to find target dom element instead the dom element....
- 4 replies
-
- _IE
- _IEGetObjById
- (and 4 more)
-
A search of a web page can retrieve 1 to 20 (or more) links split into 20 per page I can go on to the second page by using: If $x = 20 Then Sleep(2000) ;two seconds $oNext = _IEGetObjById($oIE, "pager1") _IEAction($oNext, "click") _IELoadWait($oIE) where $x is the count of links on the previo...