Epulone Posted April 27, 2019 Posted April 27, 2019 (edited) I am trying to click on the first "view details" button at the website below: https://www...... I would like to try the way I found at this post (I don't know if it is the best way) but I am not able to locate the button by ID or name. I have tried: Local $oForm = _IEGetObjByName($oIE, "View Details") but it didn't work [ it gives me 0 (zero) in MsgBox], probably because there are several with the same name in the same page and I couldn't find a way to identify ID. Also _INetGetSource didn't help How can I find out the property of this specific first button? Thanks Edited May 20, 2019 by Epulone
Nine Posted April 27, 2019 Posted April 27, 2019 (edited) There is 2 clear identification possibilities for you to use with tagname div : <div class="btn btn-primary btn-sm font-sm property-details-button">View Details</div> .className = "btn btn-primary btn-sm font-sm property-details-button" or .innerText = "View Details" Just use _IETagNameGetCollection with div, and scan the collection for one of those 2 identificators... Edit : Since there is a lot of div tags, I would recommend you to use "a" tag instead and then use the .firstElementChild to access that specific button... Edited April 27, 2019 by Nine “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy
Danp2 Posted April 27, 2019 Posted April 27, 2019 Another option would be to use jQuery since the site is already using it. Take a look at this thread -- You would click the button using something like this -- $jQuery("div.btn.btn-primary.btn-sm.property-details-button").first().click() Latest Webdriver UDF Release Webdriver Wiki FAQs
Epulone Posted April 28, 2019 Author Posted April 28, 2019 I have tried to learn more about how to use jQuery in Autoit but it seems to advanced for me. I would like to learn but I was not able to find a place to start. When you have a moment could you please give me more details in how to use it with autoit? Or a good place to start? Thanks
Danp2 Posted April 28, 2019 Posted April 28, 2019 The place to start would be the link I previously posted. Copy the contained code and try running it. This should give you the basics on how jQuerify works. Beyond that, I posted a line of code above that should work to click the button you indicated you wanted to click. Try running it and let us know if it works. If it doesn't, come back and show us your code and also the results from the Scite output window. Latest Webdriver UDF Release Webdriver Wiki FAQs
Epulone Posted May 20, 2019 Author Posted May 20, 2019 I solve the problem using: $oSpans = _IETagNameGetCollection($oIE, "div") Global $oIE = _IECreate ("https://www........") Local $oSpans = _IETagNameGetCollection($oIE, "div") For $oSpan In $oSpans If $oSpan.className = 'btn btn-primary btn-sm font-sm property-details-button' Then _IEAction($oSpan, "click") ExitLoop EndIf Thank you
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