Hope you guys can help me out. Was trying to get inside the hidden element on this website https://cobbca.cobbcounty.org/CitizenAccess/default.aspx using vba selenium however for some reason its not giving me any result.
Was trying to get the text written on this HTML code:
<label id="ctl00_PlaceHolderMain_LoginBox_txtUserId_label_1" for="ctl00_PlaceHolderMain_LoginBox_txtUserId">User Name or E-mail:</label>
I tried this code to get the text out of it:
Debug.Print chrome.FindElementByXPath("//*[@id='ctl00_PlaceHolderMain_LoginBox_txtUserId_label_1']").Text
For some reason it's not giving me any result at all. If you inspect from the website I notice there was some javascript written on the page and makes it hidden for some reason. Is there a way to get out of this?
Even tried using findelementbyID or findelementbyCSS but to no avail.
Hope you can assist me. Thanks in advance