Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is it possible to do page speed testing for multiple urls? #131

Open
gauravgandhi15 opened this issue May 28, 2020 · 1 comment
Open

Is it possible to do page speed testing for multiple urls? #131

gauravgandhi15 opened this issue May 28, 2020 · 1 comment

Comments

@gauravgandhi15
Copy link

No description provided.

@gauravgandhi15 gauravgandhi15 changed the title Is it possible to do run page speed api for multiple urls at same time? Is it possible to do page speed testing for multiple urls? May 28, 2020
@marcelduran
Copy link
Contributor

Yes, webpagetest runs are asynchronous, therefore you can:

  • use the convenient batch command via command line,
  • loop thorugh a list of urls in node: ['http://a.com', 'http://b.com'].forEach(wpt.runTest) or
  • loop in bash: for url in `cat urls.txt`; do webpagetest test $url; done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants