I am trying to fill out a form asssociated with a url. The depth of the form seems to make is problematic.
The specific parts that I'm trying to fill out are: ctl00$cplMain$ddSearchOper and ctl00$cplMain$txtSearchString . I either can't get the set to recognize them or I can't get the equality to work.
Any help would be appreciated.
html <- read_html("https://permits.fairfield.ca.gov/etrakit3/Search/permit.aspx")
frm <- html_form(html)[[1]]
frm |> str()
vals <- list(ddSearchOpe= "AT LEAST", txtSearchString = "01/01/2010")
ser <- frm |> html_form_set(!!!vals)
resp <- html_form_submit(ser)