from . import pages from ._builtin import Bot from otree.api import Submission import random class PlayerBot(Bot): def play_round(self): yield (pages.Sociodemographics, {'age': random.randint(16, 90), 'education': random.randint(1, 5), 'browser': random.randint(1, 6)}) yield (pages.FinishedTasks) yield (pages.PayoffandGoodbye)