MRAJ Posted July 5, 2021 Share Posted July 5, 2021 (edited) Hello, I am using webdriver udf for my edge browser and my scripts are working fine. But sometimes my website loading will take 2 or 3 minutes. _WD_Navigate is not going to next commands until page is not fully loaded. So i want to put a threshold like if the loading will take more than 1 minute , it should move on to the next command. I tried with _WD_LoadWait and _WD_Timeout after the _WD_Navigate but it is not working and it waits until page not fully loaded. Due to this my other scripts get killed or it hanged which i am running at certain time intervals. I tried with below scripts. Please let me know if you need more info. _WD_Navigate($sSession,$URL) _WD_LoadWait($sSession,$iTimeout) _WD_LoadWait($sSession, 2000) _WD_SetTimeouts($sSession, '{"pageLoad":2000}') Edited July 5, 2021 by MRAJ Link to comment Share on other sites More sharing options...
water Posted July 5, 2021 Share Posted July 5, 2021 20 minutes ago, MRAJ said: tried with _WD_LoadWait and _WD_Timeout after the _WD_Navigate Shouldn't you set the timeout BEFORE calling _WD_Navigate? Danp2 1 My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
MRAJ Posted July 5, 2021 Author Share Posted July 5, 2021 Hello, You mean to say i should put the _WD_Timeout before calling _WD_Navigate. Link to comment Share on other sites More sharing options...
water Posted July 5, 2021 Share Posted July 5, 2021 👍 My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
MRAJ Posted July 5, 2021 Author Share Posted July 5, 2021 (edited) Edited July 5, 2021 by MRAJ Link to comment Share on other sites More sharing options...
MRAJ Posted July 5, 2021 Author Share Posted July 5, 2021 I will check if this works and get back. Thanks 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