ExperimentSession.final_page#
- property ExperimentSession.final_page: alfred3.page.Page[source]#
The experiment’s final page.
This page will be displayed after a subject has finished the experiment. It will not contain any navigation elements. You can use this property to change the final page by assigning a page of your design.
Notes
You do not need to define a name for the final page. The name will be set automatically to ‘_final_page’.
See also
You can change the final page in a similar way using
Experiment.final_page
.For conditional assignment of the experiment’s final page, doing so using a function with the
Experiment.finish()
decorator is the recommended way to go.
Examples
>>> import alfred3 as al >>> exp = al.ExperimentSession() >>> exp.final_page = al.Page() >>> exp.final_page Page(class="Page", name="_final_page")