2022-11-21 16:16:54 +00:00
|
|
|
// This test ensures that several clickable items actually have the pointer cursor.
|
2023-04-11 17:11:34 +00:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/lib2/struct.Foo.html"
|
2022-11-21 16:16:54 +00:00
|
|
|
|
|
|
|
// the `[+]/[-]` button
|
|
|
|
assert-css: ("#toggle-all-docs", {"cursor": "pointer"})
|
|
|
|
|
|
|
|
// the button next to the path header
|
|
|
|
assert-css: ("#copy-path", {"cursor": "pointer"})
|
|
|
|
|
|
|
|
// the search tabs
|
|
|
|
write: (".search-input", "Foo")
|
|
|
|
// 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"
|
|
|
|
assert-css: ("#search-tabs > button", {"cursor": "pointer"})
|
2022-11-21 16:16:54 +00:00
|
|
|
|
|
|
|
// mobile sidebar toggle button
|
2023-04-11 17:11:34 +00:00
|
|
|
set-window-size: (500, 700)
|
2022-11-21 16:16:54 +00:00
|
|
|
assert-css: (".sidebar-menu-toggle", {"cursor": "pointer"})
|
|
|
|
|
|
|
|
// the sidebar toggle button on the source code pages
|
2023-04-11 17:11:34 +00:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/src/lib2/lib.rs.html"
|
2022-12-15 23:29:52 +00:00
|
|
|
assert-css: ("#src-sidebar-toggle > button", {"cursor": "pointer"})
|