0

Recording a http-protocol vuser script on my Rich Internet Application (RIA) results in some CLICKs not being recorded.

As i.e. clicking an icon to open a hidden menu, choosing a radiobutton and clicking submit (not creating any http-traffic (request/response).

Is it possible to use web_custom_request to do this manipulation manually on the hidden menu?

Bart
  • 19,692
  • 7
  • 68
  • 77
Magnus Jensen
  • 905
  • 6
  • 36
  • 73

1 Answers1

0

No web_custom_request() is a protocol level option at a level just above that of Winsocket. It's pretty much a raw HTTP request. As such, the call leaves and then heads down the stack. A GUI level operation would require a call up the stack, which is counter intuitive for client-server operations as calls generally are sideways or down the stack (OSI Model) and results returned up the stack.

James Pulley
  • 5,606
  • 1
  • 14
  • 14