from otree.api import expect from . import pages from ._builtin import Bot from .models import Constants class PlayerBot(Bot): def play_round(self): yield pages.Comments, {'technical_issues': False, 'comments': 'foo bar'} expect(self.player.comments, 'foo bar') expect(self.player.technical_issues, False)