Hi all,
Can anyone help me and let me know if there is a way to check the shiny applications. For example for the below ui.R and server.R, can we check whether all inputs (selectInput, textoutput, textinput) and outputs are working well or not?
ui.R
library(shiny)
# Define UI for application that draws a histogram
shinyUI(fluidPage(
textInput("name", "Name: "),
textOutput("greeting"),
selectInput("Slider","Slider",choices = unique(iris$Species))
)
)
server.R
library(shiny)
shinyServer(function(input, output) {
output$greeting <- renderText({
paste0("Hello, ", input$name, "!")
})
})