• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  pages: {
3    amazon_product: [
4      {action: "get", url: "https://www.amazon.co.uk/NIVEA-Suncream-Spray-Protect-Moisture/dp/B001B0OJXM"},
5      {action: "wait_for_element", selector: "input[id=sp-cc-accept]", timeout: "3s"},
6      {action: "click", selector: "input[id=sp-cc-accept]"},
7      {action: "wait", duration: "3s"},
8      {action: "get", url: "about:blank"},
9    ],
10    cnn_article: [
11      {action: "inject_new_document_script", script_path: "cnn_instrumentation.js", timeout: "5s"},
12      {action: "get", url: "https://edition.cnn.com/2024/04/21/china/china-spy-agency-public-profile-intl-hnk/index.html"},
13      {action: "wait", duration: "5s"},
14      {action: "get", url: "about:blank"},
15    ],
16    wikipedia_article: [
17      {action: "get", url: "https://en.wikipedia.org/wiki/Taylor_Swift"},
18      {action: "wait", duration: "3s"},
19      {action: "get", url: "about:blank"},
20    ],
21    globo_homepage: [
22      {action: "inject_new_document_script", script_path: "globo_instrumentation.js", timeout: "5s"},
23      {action: "get", url: "https://globo.com"},
24      {action: "wait", duration: "5s"},
25      {action: "get", url: "about:blank"},
26    ],
27    google_search_result: [
28      {action: "get", url: "https://www.google.com/search?q=cats"},
29      {action: "wait", duration: "3s"},
30      {action: "get", url: "about:blank"},
31    ],
32  },
33}
34