Limiting the screen width
Some tests have a different appearance on small and large screens. The width of the screen can therefore be constrained using a 'template' keyword and selecting one of the defined widths.
template fixedscreenLlimits the width to 1024px, this best corresponds to tablet or small screen.template fixedscreenMlimits the width to 768px, this corresponds to a tablettemplate fixedscreenSlimits the width to 375px, this corresponds to a mobile phone.
template has to be used prior to defining the first screen or else it will not be accounted for and the test size will correspond to the actual sceen size.
test demo1PomuckyEduGSheet.ptest
template fixedscreenL
screen First screen
...


Last updated