get Google CSI data (Client Side Instrumentation)

getGoogleCsiData(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 tibble of Google CSI data (Client Side Instrumentation). If no CSI data is available for the test a blank tibble is returned.

Examples

## Not run: ------------------------------------ # WPT <- server() # history <- getHistory(WPT, filter = "London") # tID <- as.character(history[dim(history)[1], "Test ID"]) # googlecsi <- getGoogleCsiData(WPT, tID) ## ---------------------------------------------