Main Question
I'm currently making a web crawler, but I'll need to deal with login windows sometimes. All simple web crawlers created with Mathematica I've seen before cannot deal with input boxes or login windows.
So I would like to ask how to let Mathematica "input" things on webpages.
Example
Now I would like to know the results on the example website I created when the input is 1,2,..,10.
This is what the website will look like when visiting:
Then we need to input an integer:
Finally, press Submit to get this:
<|"x" -> 5|>
So the final result should be like:
{<|"x" -> 1|>, <|"x" -> 2|>, <|"x" -> 3|>, <|"x" -> 4|>, <|"x" -> 5|>, <|"x" -> 6|>, <|"x" -> 7|>, <|"x" -> 8|>, <|"x" -> |>, <|"x" -> 10|>}
How can I do this using only Mathematica?

