Add GUI test to check the left and right arrow keys
This commit is contained in:
parent
3a8faba645
commit
85afbe466e
1 changed files with 29 additions and 0 deletions
29
tests/gui/move-between-pages.goml
Normal file
29
tests/gui/move-between-pages.goml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
// This tests basic search behavior.
|
||||
|
||||
// We disable the requests checks because `searchindex.json` will always fail
|
||||
// locally (due to CORS), but the searchindex.js will succeed.
|
||||
fail-on-request-error: false
|
||||
|
||||
go-to: |DOC_PATH| + "index.html"
|
||||
|
||||
// default page is the first numbered page
|
||||
assert-text: ("title", "Introduction - mdBook test book")
|
||||
|
||||
// Moving left we get to the prefix page
|
||||
press-key: 'ArrowLeft'
|
||||
assert-text: ("title", "Prefix Chapter - mdBook test book")
|
||||
|
||||
// Trying to move to the left beyond the prefix pages - nothing changes
|
||||
press-key: 'ArrowLeft'
|
||||
assert-text: ("title", "Prefix Chapter - mdBook test book")
|
||||
|
||||
// Back to the main page
|
||||
press-key: 'ArrowRight'
|
||||
assert-text: ("title", "Introduction - mdBook test book")
|
||||
|
||||
press-key: 'ArrowRight'
|
||||
assert-text: ("title", "Markdown Individual tags - mdBook test book")
|
||||
|
||||
press-key: 'ArrowRight'
|
||||
assert-text: ("title", "Heading - mdBook test book")
|
||||
|
||||
Loading…
Add table
Reference in a new issue