Closed ellisonleao closed 5 years ago
I have form with name
attribute but it isn't detected
Here is my website
You may try:
fm, _ := bow.Form("form.some-form") fm.Input("textarea#someid", "your desired value") if fm.Submit() != nil { panic(err) }
I can confirm that I had similar issue.
Since the current implementation uses the field's
name
attribute to create theurl.Values
, which is correct from the W3C standards, is it maybe possible to submit a form event if the field has noname
attribute?Say we have this
Is it possible that i could populate the textarea and click the button after?