Search the Community
Showing results for tags 'browsers'.
-
I am new to AutoIT so my apologies if this is trivial, but I am only finding IE references. Is there a library besides the IE one to control browser windows? I will not use IE, only Edge or Chrome (possibly FireFox if there is no other choice) I have the script I am working on doing everything it needs to do but the last item, opening a webpage and signing in runs into a snag as there is an accept dialog screen, that displays after login, that must be okayed It is the active window, so I need to get the Button element, set its focus and click it (it is only enabled/clickable via javascript when you hover over it, greyed out otherwise)
-
Hi there... i have this script and i want to make it run in other browsers such as mozilla, chrome, opera or even _html.au3 #include <IE.au3> Local $oIE = _IECreate("https://www.example.com/") Sleep (10000) Local $oFrame = _IEFrameGetCollection($oIE, 0) Local $oAs = _IETagNameGetCollection($oIE, "a") For $oA In $oAs $sDataTarget = Execute("$oA.attributes.getNamedItem('data-target').value") If $sDataTarget = "example" Then _IEAction($oA, "click") EndIf Nextthe problem is at these two functions which i can not find at the other browsers: _IETagNameGetCollection_IEFrameGetCollectionCan anyone tell how to handle with this problem.. should i create these functions as new or what?