library(shinytest2)
test_that("autocomplete works", {
  # Don't run these tests on the CRAN build servers
  skip_on_cran()
  shiny_app_path <-
    system.file("examples/autocomplete/app.R", package = "shinyMobile")
  app <- AppDriver$new(
    shiny_app_path,
    name = "autocomplete-app"
  )
  app$expect_values(input = "myautocomplete")
  app$click(selector = "#update")
  # Wait for any animation to complete
  app$wait_for_idle(1000)
  app$expect_values(input = "myautocomplete")
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.