about summary refs log tree commit diff
path: root/tests/rustdoc-gui/utils.goml
blob: 10439309402f18748b476caf5e2df57a53ad6389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// This file contains code to be re-used by other tests.
define-function: (
    "switch-theme",
    [theme],
    block {
        // Set the theme.
        // Open the settings menu.
        click: "rustdoc-toolbar .settings-menu"
        // Wait for the popover to appear...
        wait-for: "#settings"
        // Change the setting.
        click: "#theme-"+ |theme|
        // Close the popover.
        click: "rustdoc-toolbar .settings-menu"
        // Ensure that the local storage was correctly updated.
        assert-local-storage: {"rustdoc-theme": |theme|}
    },
)

define-function: (
    "switch-theme-mobile",
    [theme],
    block {
        // Set the theme.
        // Open the settings menu.
        click: "rustdoc-topbar .settings-menu"
        // Wait for the popover to appear...
        wait-for: "#settings"
        // Change the setting.
        click: "#theme-"+ |theme|
        // Close the popover.
        click: "rustdoc-topbar .settings-menu"
        // Ensure that the local storage was correctly updated.
        assert-local-storage: {"rustdoc-theme": |theme|}
    },
)

define-function: (
    "perform-search",
    [query],
    block {
        click: "#search-button"
        wait-for: ".search-input"
        write-into: (".search-input", |query|)
        press-key: 'Enter'
        // wait for the search to start
        wait-for: "#search-tabs"
        // then wait for it to finish
        wait-for-false: "#search-tabs .count.loading"
    }
)