ExperimentSession.jump()#
- ExperimentSession.jump(to: Union[str, int])[source]#
Jumps to a specific page in the experiment.
- Parameters
to (str, int) – The name or index of the target page. Preferred usage is by name, because that reduces ambiguity.
Can be called in the
Page.custom_move()
hook to implement very specific movement behavior.See also
Refer to the documentation of
Page.custom_move()
for guidance on how to implement a custom movement method.