Watts-Lab / surveys

Library of surveys for deliberation experiments
MIT License
3 stars 4 forks source link

[Add] Political Leanings Survey #90

Closed JamesPHoughton closed 1 year ago

JamesPHoughton commented 2 years ago
{
"type": "radiogroup",
"name": "political_party_US",
"visibleIf": "{country_reside} = 'United States'",
"title": "Generally speaking, do you consider yourself a...\t",
"isRequired": true,
"choices": ["Democrat", "Republican", "Independent", "Other Party"]
}

        {
          "type": "radiogroup",
          "name": "political_social",
          "title": "Thinking about social issues, which of the following best describes your views?\t",
          "isRequired": false,
          "choices": [
            "Strongly Liberal",
            "Somewhat Liberal",
            "Moderate",
            "Somewhat Conservative",
            "Strongly Conservative"
          ]
        },
        {
          "type": "radiogroup",
          "name": "political_fiscal",
          "title": "Thinking about economic issues, which of the following best describes your views?\t",
          "isRequired": false,
          "choices": [
            "Strongly Liberal",
            "Somewhat Liberal",
            "Moderate",
            "Somewhat Conservative",
            "Strongly Conservative"
          ]
        },

    cy.get(`[data-name="political_social"] input[value="Moderate"]`).click({
      force: true,
    });

    cy.get(`[data-name="political_fiscal"] input[value="Moderate"]`).click({
      force: true,
    });

        cy.get(`[data-name="political_party_US"] input[value="Independent"]`).click(
      { force: true }
    );

Add a new survey to the repository according to the instructions in the package README.md.

Survey Title

Survey Source

Survey Overview

Aggregation/scoring function

Tasks