forked from autonomous-testing/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
123 lines (114 loc) · 4.02 KB
/
mkdocs.yml
File metadata and controls
123 lines (114 loc) · 4.02 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
site_name: Wopee.io
nav:
- 🚀 Welcome!: index.md
- 🤖 Getting started: ai-agent.md
- Concepts:
- ✨ Analysis - Process: concepts/analysis-process.md
- 🔗 Analysis - Inputs: concepts/analysis-inputs.md
- 📖 Prompting Guidelines: concepts/prompting-guidelines.md
- 🛠️ Tools & Assertions: concepts/tools-and-assertions.md
- 📃 POM example - Login: concepts/pom-login-example.md
- Visual Testing with...:
- ≫ Cypress:
- Getting started: cypress/01-getting-started.md
- Template project: cypress/02-template-project.md
- Install plugin: cypress/03-install-plugin.md
- ≫ Playwright: playwright-visual-testing.md
- ≫ WebdriverIO: webdriverio-visual-testing.md
- ≫ Robot Framework:
- Getting started: robot-framework/01-getting-started.md
- Manual setup: robot-framework/02-manual-setup.md
- Setup with make: robot-framework/03-setup-with-make.md
- Examples: robot-framework/04-some-more-examples.md
- Guides:
- 📁 Upload files: guides/upload-files.md
- 📥 Download files: guides/download-files.md
- 🗄️ Browser local storage: guides/browser-local-storage.md
- 🌐 Project context: guides/project-context.md
- 🔌 HTTP Request Tool: guides/http-tools.md
- 🚀 Wopee.io MCP: guides/wopee-mcp.md
- Other docs:
- 🧑✈️ Pilot projects: pilot-projects.md
- 🔒 Enterprise Connectivity: security/enterprise-connectivity.md
- 📖 Glossary: glossary.md
theme:
name: material
language: en
palette:
# Palette toggle for light mode
- scheme: default
media: "(prefers-color-scheme: light)"
primary: amber
accent: deep purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: amber
accent: deep purple
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
logo: assets/logo.png
favicon: assets/favicon.png
features:
- navigation.indexes
- navigation.instant
- navigation.tracking
- navigation.sections
- toc.integrate
- navigation.top
- navigation.footer
- content.code.copy
extra:
social:
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/wopee/
- icon: fontawesome/brands/github
link: https://github.com/Wopee-io
analytics:
provider: google
property: G-PVTHWLV51B
extra_css:
- css/custom.css
extra_javascript:
- js/custom.js
plugins:
- redirects:
redirect_maps:
"integrations/cypress/01-getting-started.md": "cypress/01-getting-started.md"
"cypress.md": "cypress/01-getting-started.md"
"cy.md": "cypress/01-getting-started.md"
"integrations/playwright/01-getting-started.md": "playwright-visual-testing.md"
"playwright.md": "playwright-visual-testing.md"
"pw.md": "playwright-visual-testing.md"
"integrations/webdriverio/01-getting-started.md": "webdriverio-visual-testing.md"
"webdriverio.md": "webdriverio-visual-testing.md"
"wdio.md": "webdriverio-visual-testing.md"
"integrations/robot-framework/01-getting-started.md": "robot-framework/01-getting-started.md"
"robot-framework.md": "robot-framework/01-getting-started.md"
"rf.md": "robot-framework/01-getting-started.md"
"getting-started.md": "ai-agent.md"
"bot.md": "ai-agent.md"
markdown_extensions:
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences
- md_in_html
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets