Reputation: 479
I want to use webpagetest to measure the performance of webpage by scripting the steps in a file.
But when i run webpagetest test <url>/<script>
, I get below error:
An error occurred processing your request (missing API key). If you do not have an API key assigned you can request one at http://www.webpagetest.org/getkey.php
I have requested an API key and received it to but still getting the error. What am I doing wrong?
Is there anything else I can use to view page/action wise performance of webpage
Upvotes: 0
Views: 420
Reputation: 11844
Assuming this is the node.js client, you can use the -k option:
webpagetest -k YOUR_KEY test <url>/<script>
Upvotes: 3