library(shinytest2)
test_that("Migrated shinytest test: mytest.R", {
app <- AppDriver$new(
variant = shinytest2::platform_variant(),
seed = 100,
height = 1200, width = 1500,
shiny_args = list(display.mode = "normal"),
options = list("shiny.json.digits" = 4)
)
verbose <- FALSE
if (verbose) {
print(1)
print(app$get_logs())
cat("\n\n")
}
app$wait_for_value(output = "map")
Sys.sleep(4) # let map fill in
if (verbose) {
print(2)
print(app$get_logs())
cat("\n\n")
}
app$expect_values()
app$expect_screenshot(threshold = 5)
app$set_inputs(threshold = 3)
app$set_inputs(color = "college")
Sys.sleep(4) # let map fill in
if (verbose) {
print(3)
print(app$get_logs())
cat("\n\n")
}
app$expect_values()
app$expect_screenshot(threshold = 5)
app$set_inputs(nav = "Data explorer")
ziptable_rows_all_init <- app$wait_for_value(input = "ziptable_rows_all")
if (verbose) {
print(4)
print(app$get_logs())
cat("\n\n")
}
app$expect_values()
app$expect_screenshot(threshold = 5)
# Input 'ziptable_rows_current' was set, but doesn't have an input binding.
# Input 'ziptable_rows_all' was set, but doesn't have an input binding.
app$set_inputs(states = "MA")
# Input 'ziptable_rows_current' was set, but doesn't have an input binding.
# Input 'ziptable_rows_all' was set, but doesn't have an input binding.
app$wait_for_value(input = "ziptable_rows_all", ignore = list(ziptable_rows_all_init))
if (verbose) {
print(5)
print(app$get_logs())
cat("\n\n")
}
app$expect_values()
app$expect_screenshot(threshold = 5)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.