Submit Form within HTMLViewer

Hi, I’m searching for a way to fill some fields of a form displayed on a webpage loaded with HTMLViewer.
Is such a thing possible?
I’ve done some searching but nothing found something like .Post

You’ll have to figure out some things about the page you are posting, but you could use JavaScript to do this. It will be something like:

document.forms[0].submit();

But like I said, it depends on the page.

If the form tag has an “id” attribute, you can refer to it by that:

document.getElementById('id value goes here').submit();