i am writing some tests for shiny-apps. In UI.R data we have a fileInput-Object:
fileInput(inputId= "file", label="", accept=c(".Rdata"))
After i click it:
webEl <- remDr$findElement(using = 'css selector', "#file")
webEl$clickElement()
a OpenFileDialog appear. For my test i need to choose a file with OpenFileDIalog. Is there any possibility to do this with R Selenium? I have no clue how to do this.