aboutsummaryrefslogtreecommitdiffstats
path: root/.fresnel.yml
blob: ff7f2e18f86d7a761602971aeb709133016427e4 (plain) (blame)
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
52
53
54
55
56
57
58
# This file declares MediaWiki scenarios for Fresnel, a web page performance
# monitoring tool. See <https://wikitech.wikimedia.org/wiki/Performance/Fresnel>.

warmup: true
runs: 7
scenarios:
  Read a page:
    # The only page that exists by default is the main page.
    # But its actual name is configurable/unknown (T216791).
    # Omit 'title' to let MediaWiki show the default (which is the main page),
    # and a query string to prevent a normalization redirect.
    url: "{MW_SERVER}{MW_SCRIPT_PATH}/index.php?noredirectplz"
    viewport:
      width: 1100
      height: 700
    reports:
      - navtiming
      - paint
      - transfer
    probes:
      - screenshot
      - trace
  Load the editor:
    url: "{MW_SERVER}{MW_SCRIPT_PATH}/index.php?action=edit"
    viewport:
      width: 1100
      height: 700
    reports:
      - navtiming
      - paint
      - transfer
    probes:
      - screenshot
      - trace
  View history of a page:
    url: "{MW_SERVER}{MW_SCRIPT_PATH}/index.php?action=history"
    viewport:
      width: 1100
      height: 700
    reports:
      - navtiming
      - paint
      - transfer
    probes:
      - screenshot
      - trace
  View recent changes:
    url: "{MW_SERVER}{MW_SCRIPT_PATH}/index.php?title=Special:RecentChanges"
    viewport:
      width: 1100
      height: 700
    reports:
      - navtiming
      - paint
      - transfer
    probes:
      - screenshot
      - trace