I am making a program that would post on a webpage, to submit the form it has to "click" on a button:
<button class="form" type="submit">Send</button>
From what I know (not much) to submit a POST request when it's INPUT you must do name=value, but I don't know how I could do that with a submit button.
Basically I want to know what I must POST to the website so that it submits the form :p
POST
data as there is nomethod
attribute - the default method used by forms isGET
so the commentWhatever backend you are using should be able to read POST request parameter "name"
is incorrect. – Pedrick