A web page has 2 form fields
1:
<input type="text" maxlength="30" value="" name="poster" id="id_poster">
2:
<textarea name="content" cols="80" rows="20" id="id_content"></textarea>
Also it has a button:
<input type="submit" value="Submit your own idea!">
What I want is, through python to fill in the forms id_poster and id_content and then Submit. If possible, to take the webpage after submitting (to take the result).
Thank you all