get the Google Page Speed results (if available) from test

getPageSpeedData(server, testId, run = 1L, repeatView = FALSE,
  dryRun = FALSE, ...)

Arguments

server
A WebPagetest server
testId
test ID string
run
an integer. Which run number on a multiple runs test. Defaults to 1L.
repeatView
get the Repeat View (cached view) instead of default First View (primed cache). Defaults to FALSE
dryRun
If TRUE just return the RESTful API URL. Defaults to FALSE
...
Additonal function arguments

Value

A list of Google Page Speed results (if available) from test. It is unlikely pagespeed data is available for recent tests. See https://github.com/WPO-Foundation/webpagetest/issues/669. If the Page Speed data is not available a HTTP 404 not found error will be returned.

Examples

## Not run: ------------------------------------ # WPT <- server() # tID <- "121216_XZ_AA" # pagespeed <- getPageSpeedData(WPT, tID) ## ---------------------------------------------