2025-03-20 22:07:08 +02:00
|
|
|
// This tests pressing the left and right arrows moving to previous and next page.
|
2025-03-20 21:58:21 +02:00
|
|
|
|
2025-10-13 21:12:05 -07:00
|
|
|
go-to: |DOC_PATH| + "all-summary/index.html"
|
2025-03-20 21:58:21 +02:00
|
|
|
|
2025-10-13 21:12:05 -07:00
|
|
|
// default page is the first chapter
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "Prefix 1 - all-summary")
|
2025-03-20 21:58:21 +02:00
|
|
|
|
2025-10-13 21:12:05 -07:00
|
|
|
// Trying to move to the left beyond the prefix pages - nothing changes
|
2025-03-20 21:58:21 +02:00
|
|
|
press-key: 'ArrowLeft'
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "Prefix 1 - all-summary")
|
2025-10-13 21:12:05 -07:00
|
|
|
|
|
|
|
|
// Move left
|
|
|
|
|
go-to: |DOC_PATH| + "all-summary/intro.html"
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "Introduction - all-summary")
|
2025-10-13 21:12:05 -07:00
|
|
|
|
|
|
|
|
press-key: 'ArrowLeft'
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "Prefix 2 - all-summary")
|
2025-03-20 21:58:21 +02:00
|
|
|
|
|
|
|
|
press-key: 'ArrowLeft'
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "Prefix 1 - all-summary")
|
2025-10-13 21:12:05 -07:00
|
|
|
|
|
|
|
|
// Move right
|
|
|
|
|
press-key: 'ArrowRight'
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "Prefix 2 - all-summary")
|
2025-03-20 21:58:21 +02:00
|
|
|
|
|
|
|
|
press-key: 'ArrowRight'
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "Introduction - all-summary")
|
2025-03-20 21:58:21 +02:00
|
|
|
|
|
|
|
|
press-key: 'ArrowRight'
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "P1 C1 - all-summary")
|
2025-03-20 21:58:21 +02:00
|
|
|
|
|
|
|
|
press-key: 'ArrowRight'
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "P2 C1 - all-summary")
|
2025-03-20 21:58:21 +02:00
|
|
|
|
2025-10-13 21:12:05 -07:00
|
|
|
press-key: 'ArrowRight'
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "Suffix 1 - all-summary")
|
2025-03-20 22:07:08 +02:00
|
|
|
|
|
|
|
|
press-key: 'ArrowRight'
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "Suffix 2 - all-summary")
|
2025-03-20 22:07:08 +02:00
|
|
|
|
|
|
|
|
// Try to go beyond the last page
|
|
|
|
|
press-key: 'ArrowRight'
|
2026-04-20 15:46:20 -07:00
|
|
|
wait-for-text: ("title", "Suffix 2 - all-summary")
|