write hex color using rselenium

I am trying to write/send a hex color using rselenium, but it shows green color....

library(RSelenium)
rD <- RSelenium::rsDriver(browser = "firefox", check = FALSE)
remDr <- rD[["client"]]
remDr$navigate("https://9qrcode.com/#link")
remDr$findElement("xpath", "//button[contains(.,' Colors')]")$clickElement()
# Background
remDr$findElement("name", "backcolor")$clearElement()
remDr$findElement("name", "backcolor")$sendKeysToElement(list("#0D3C47"))

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.