R/RS.InputText.R

Defines functions RS.input_Text

Documented in RS.input_Text

#' Input text and do not press enter
#'
#' @param xpath xpath of location
#' @param text text that you want to input
#'
#' @return a web
#' @export
#'
#' @examples RS.input_Text(xpath,text)
RS.input_Text <- function(xpath,text){
  btn <- remDr$findElement(using = 'xpath', value = xpath)
  text <- list(text)
  btn$sendKeysToElement(text)
}
yikeshu0611/RS.Driver documentation built on April 8, 2020, 1:52 p.m.