Get history of previously run tests

getHistory(server, days = 1L, filter = NULL, dryRun = FALSE, ...)

Arguments

server
A WebPagetest server
days
Number of days to get history for defaults to 1L.
filter
optional string to filter the results against
dryRun
If TRUE just return the RESTful API URL. Defaults to FALSE
...
Additonal function arguments

Value

A tibble with "Date/Time", "Location", "Test ID", "URL","Label" of tests. NOTE: The results returned are limited on default server.

Examples

## Not run: ------------------------------------ # WPT <- server() # history <- getHistory(WPT, days = 7L) ## ---------------------------------------------