2022-11-14 17:41:07 +00:00
|
|
|
// Checks that the search tab results work correctly with function signature syntax
|
|
|
|
// First, try a search-by-name
|
2023-04-11 17:11:34 +00:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
|
2024-04-01 19:11:22 +00:00
|
|
|
write-into: (".search-input", "Foo")
|
2022-11-14 17:41:07 +00:00
|
|
|
// To be SURE that the search will be run.
|
|
|
|
press-key: 'Enter'
|
|
|
|
// Waiting for the search results to appear...
|
2022-12-22 22:52:34 +00:00
|
|
|
wait-for: "#search-tabs"
|
2022-11-14 17:41:07 +00:00
|
|
|
|
|
|
|
// Now use the keyboard commands to switch to the third result.
|
|
|
|
press-key: "ArrowDown"
|
|
|
|
press-key: "ArrowDown"
|
|
|
|
press-key: "ArrowDown"
|
|
|
|
assert: ".search-results.active > a:focus:nth-of-type(3)"
|
|
|
|
|
|
|
|
// Now switch to the second tab, then back to the first one, then arrow back up.
|
|
|
|
press-key: "ArrowRight"
|
|
|
|
assert: ".search-results.active:nth-of-type(2) > a:focus:nth-of-type(1)"
|
|
|
|
press-key: "ArrowLeft"
|
|
|
|
assert: ".search-results.active:nth-of-type(1) > a:focus:nth-of-type(3)"
|
|
|
|
press-key: "ArrowUp"
|
|
|
|
assert: ".search-results.active > a:focus:nth-of-type(2)"
|
|
|
|
press-key: "ArrowUp"
|
|
|
|
assert: ".search-results.active > a:focus:nth-of-type(1)"
|
|
|
|
press-key: "ArrowUp"
|
|
|
|
assert: ".search-input:focus"
|
|
|
|
press-key: "ArrowDown"
|
|
|
|
assert: ".search-results.active > a:focus:nth-of-type(1)"
|