Because you'll probably need more POST data if you want to test several pages, and because other people could be interested, here how to process in detail:
1. Go to your survey
2. Open Chrome extension tool (right click, "inspect")
3. Click on the "Network" tab
4. Click on the "Next" button of the survey
5. You'll see all the resources that are reach by the network
6. The one that interests you is "index.php": click on it
7. Once you clicked on it, the left part change and show you the headers sent to the server for index.php:
8. Scroll down to find the section called "Form Data" (the post request)
So for us it's:
YII_CSRF_TOKEN:6cc47e9fdd3f4e1865246bcc00d01a865554007c
fieldnames:
sid:82556
lastgroupname:_WELCOME_SCREEN_
LEMpostKey:2104474400
thisstep:0
move:movenext
9. Click on the tab "View source" to get a version you can use in your script:
so for us:
YII_CSRF_TOKEN=6cc47e9fdd3f4e1865246bcc00d01a865554007c&fieldnames=&sid=82556&lastgroupname=_WELCOME_SCREEN_&LEMpostKey=2104474400&thisstep=0&move=movenext