# -*- coding: utf-8 -*- from __future__ import division import random from otree.common import Currency as c, currency_range from . import pages from ._builtin import Bot from .models import Constants class PlayerBot(Bot): def play_round(self): yield (pages.Demographics, { 'q_studentID': 647992, 'q_mother_language': 'Türkish', 'q_study_field': 'Management', 'q_english_knowledge': 5, 'q_country': 'BS', 'q_age': 24, 'q_gender': 'Male'}) yield (pages.CognitiveReflectionTest, { 'crt_bat': 100, 'crt_widget': 5, 'crt_lake': 47 })