-
-
Notifications
You must be signed in to change notification settings - Fork 419
/
mkdocs.yml
110 lines (106 loc) · 4.1 KB
/
mkdocs.yml
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
INHERIT: ./node_modules/@appium/docutils/base-mkdocs.yml
site_name: Appium XCUITest Driver
repo_url: https://github.com/appium/appium-xcuitest-driver
repo_name: appium/appium-xcuitest-driver
copyright: Copyright © 2012 OpenJS Foundation - <a href="#__consent">Change cookie settings</a>
site_url: https://appium.github.io/appium-xcuitest-driver
edit_uri: edit/master/docs
site_description: Documentation for the Appium XCUITest driver for iOS automation
docs_dir: docs
site_dir: site
theme:
logo: assets/images/appium-logo-white.png
favicon: assets/images/appium-logo.png
custom_dir: docs/overrides
extra_css:
- assets/stylesheets/extra.css
extra:
homepage: /appium-xcuitest-driver
version:
provider: mike
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/AppiumDevs
nav:
- index.md
- overview.md
- Installation:
- installation/index.md
- installation/requirements.md
- Device Preparation:
- preparation/index.md
- preparation/real-device-config.md
- Provisioning Profile for Real Devices:
- preparation/prov-profile-basic-auto.md
- preparation/prov-profile-basic-manual.md
- preparation/prov-profile-full-manual.md
- preparation/prov-profile-generic-manual.md
- Reference:
- reference/scripts.md
- reference/bidi.md
- Server Configuration:
- reference/server-args.md
- reference/security-flags.md
- Session Configuration:
- reference/capabilities.md
- reference/settings.md
- reference/commands.md
- reference/execute-methods.md
- Element Management:
- reference/locator-strategies.md
- reference/ios-predicate.md
- reference/element-attributes.md
- Guides:
- Environment Configuration:
- guides/parallel-tests.md
- guides/ci-setup.md
- guides/multiple-xcode-versions.md
- Improve Session Startup Performance:
- guides/run-preinstalled-wda.md
- guides/run-prebuilt-wda.md
- guides/attach-to-running-wda.md
- guides/wda-custom-server.md
- guides/wda-slowness.md
- Driver Actions:
- guides/audio-capture.md
- guides/file-transfer.md
- guides/install-certificate.md
- guides/clipboard.md
- guides/touch-id.md
- guides/gestures.md
- Other:
- guides/tvos.md
- guides/input-events.md
- guides/troubleshooting.md
- guides/capability-sets.md
- contributing.md
plugins:
redirects:
redirect_maps:
'device-preparation.md': 'preparation/index.md'
'real-device-config.md': 'preparation/real-device-config.md'
'setup.md': 'installation/index.md'
'actions.md': 'guides/input-events.md'
'attach-to-running-wda.md': 'guides/attach-to-running-wda.md'
'audio-capture.md': 'guides/audio-capture.md'
'ci-setup.md': 'guides/ci-setup.md'
'clipboard.md': 'guides/clipboard.md'
'ios-tvos.md': 'guides/tvos.md'
'ios-xctest-file-movement.md': 'guides/file-transfer.md'
'ios-xctest-install-certificate.md': 'guides/install-certificate.md'
'multiple-xcode-versions.md': 'guides/multiple-xcode-versions.md'
'parallel-tests.md': 'guides/parallel-tests.md'
'run-prebuilt-wda.md': 'guides/run-prebuilt-wda.md'
'run-preinstalled-wda.md': 'guides/run-preinstalled-wda.md'
'touch-id.md': 'guides/touch-id.md'
'troubleshooting.md': 'guides/troubleshooting.md'
'wda-custom-server.md': 'guides/wda-custom-server.md'
'capabilities.md': 'reference/capabilities.md'
'reference/commands/appium-xcuitest-driver.md': 'reference/commands.md'
'element-attributes.md': 'reference/element-attributes.md'
'execute-methods.md': 'reference/execute-methods.md'
'ios-predicate.md': 'reference/ios-predicate.md'
'locator-strategies.md': 'reference/locator-strategies.md'
'security-flags.md': 'reference/security-flags.md'
'server-args.md': 'reference/server-args.md'
'settings.md': 'reference/settings.md'