Hello,
I have read a few posts about assigning both subject id/workerid and group id's through URL's when using Inquisit Web (this one was most helpful in particular
https://www.millisecond.com/forums/Topic19623-1.aspx), however, my URL launch page isn't working properly. I am redirecting participants from TurkPrime.
There are four conditions/ group id's. My groupid's are 0, 1, 2, 3 due to the following:
//condition 1
<include>
/ precondition = [mod(script.groupid,4)==1]
/ file = "setPtp1Items_v2.txt"
</include>
//condition 2
<include>
/ precondition = [mod(script.groupid,4)==2]
/ file = "setPtp2Items_v2.txt"
</include>
//condition 3
<include>
/ precondition = [mod(script.groupid,4)==3]
/ file = "setPtp3Items_v2.txt"
</include>
//condition 4
<include>
/ precondition = [mod(script.groupid,4)==0]
/ file = "setPtp4Items_v2.txt"
</include>
Upon testing the study on Inquisit Web (launching the study), the launch page URL in inquisit lists the subjectid = 1 and groupid=1234. First, I believe it should only be 1, 2, 3, or 0, not all combinations, and 4 shouldn't be included. I'm not sure if this is a problem due to having only one <experiment>. I only need one because all of the differences are in the include files.
<expt s>
/ groupassignment = groupnumber
/ blocks = [1 = welcome; 2 = consent; 3= mturkid; 4=instructions; 5=blocks; 6= demographics; 7= motivation_question; 8= debriefing; 9 = thankyou_completed]
/ onexptend = [values.completed = 1]
</expt>
Any assistance with figuring out the proper URL groupid would be much appreciated.
Thank you