McBear Holden
McBear Holden

Reputation: 5901

how to sumit html form with haskell

I have a tedious sequence of operations that i would like to automate with Haskell. It involves automatically clicking on a checkbox and then pushing a button. Then on the next page there's a radio button and a button. After these two steps I will get a final result page. I will then make some analysis and take some actions upon the result.

Which haskell libraries I can use ? Any sample code ?

Step 1:

step1

Step 2:

step2

Upvotes: 0

Views: 126

Answers (1)

viorior
viorior

Reputation: 1803

You need 2 things to do this:

1) Browser with full API, something like PhantomJS or Selenium

2) Script which could use this API.

Upvotes: 2

Related Questions