from otree.api import * import time doc = """ Part 1: first app used to gather and/or filter participants. """ class C(BaseConstants): NAME_IN_URL = 'smaller_group_1' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass # PAGES class MyPage(Page): @staticmethod def before_next_page(player: Player, timeout_happened): participant = player.participant participant.wait_page_arrival = time.time() print(participant.wait_page_arrival) page_sequence = [ MyPage, ]