Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to fill forms in firefox
#1
How do I fill forms in firefox?

Here's an example url - https://html5doctor.com/demos/forms/forms-example.html
Code:
Copy      Help
int w=wait(3 WV win("Forms Complete Example - Mozilla Firefox" "MozillaWindowClass"))
Acc a.Find(w "TEXT" "First Name First name only" "state=0x14100000 0x20000040" 0x3015 3)
a.SetValue("asd")


Error received:
Error (RT) in fill form:  0x80004001, Not implemented.
#2
Firefox does not support a.SetValue. Try a.Select(1), then key.

Macro Macro382
Code:
Copy      Help
int w=wait(3 WV win("Forms Complete Example - Mozilla Firefox" "MozillaWindowClass"))
act w
Acc a.Find(w "TEXT" "First Name First name only" "state=0x14100000 0x20000040" 0x3015 3)
a.Select(1)
key Ca "first" T "last"


Forum Jump:


Users browsing this thread: 1 Guest(s)