Scheduled Test on Private Instance
|
06-10-2016, 05:13 PM
Post: #1
|
|||
|
|||
Scheduled Test on Private Instance
Hi,
I have set up the private instance and would to schedule a job to test 10 URLS every day at different times like 8:00 AM, 12:00 PM, 4:00 PM, 8:00 Pm and 12:00 AM. How can I achieve this on private instance? Thank you! Kumar. |
|||
07-13-2016, 03:49 AM
Post: #2
|
|||
|
|||
RE: Scheduled Test on Private Instance
This probably isn't the cleanest way, but I used Cygwin's Curl in a batch file to make a call to WebPageTest. I tied the calling of my batch file into my build process, but you could also use CRON or Windows Task Scheduler. Here is roughly what my script looks like...
@echo off SET Curl_Path="curl.exe" SET Curl_Silent_Paramaters=-o /dev/null -s --compressed %Curl_Path% %Curl_Silent_Paramaters% http://webpagetest.mydomain.com/runtest....Page1.html %Curl_Path% %Curl_Silent_Paramaters% http://webpagetest.mydomain.com/runtest....Page1.html %Curl_Path% %Curl_Silent_Paramaters% http://webpagetest.mydomain.com/runtest....Page1.html %Curl_Path% %Curl_Silent_Paramaters% http://webpagetest.mydomain.com/runtest....Page1.html |
|||
07-14-2016, 10:22 AM
Post: #3
|
|||
|
|||
RE: Scheduled Test on Private Instance
You might find this wrapper written by Marcel Duran useful for issuing WPT tests programmatically:
https://github.com/marcelduran/webpagetest-api |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)