TheOne23 Posted November 21, 2019 Share Posted November 21, 2019 Hi MVPs and Experts, I would like to ask your expertise on this issue I am experiencing with _IECreate() Function. _IEcreate($url,1,0) still shows the Webpage when initiating another _IEcreate($url,1,0) Example of my script is below: #include <IE.au3> local $oIE_call1 = _IECreate("https://apps.mypurecloud.ie/directory/#/analytics/agents/performance",1,0) ; Initial load of web to make sure I can connect immediately on it using the _IEcreate() in _test() Function. _IEloadwait(oIE_call1) sleep(1000) Func _test() local $oIE_call2 = _IECreate("https://apps.mypurecloud.ie/directory/#/analytics/agents/performance",1,0) Endfunc Link to comment Share on other sites More sharing options...
Danp2 Posted November 21, 2019 Share Posted November 21, 2019 There are a few issues with the code you posted -- Variable name leading $ (_IEloadwait) Function containing 2nd _IECreate is never called Suggest that you repost code that we can run to observe the problem you are attempting to solve. Be sure to also include the results from the Scite output window from when you ran the same code. Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
TheOne23 Posted December 6, 2019 Author Share Posted December 6, 2019 Hi Danp2, Thank you for your help on this. As per checking and trying more techniques I am able to fix the issue. Thank you. Link to comment Share on other sites More sharing options...
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