@wdio/mcp 1.6.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -110,20 +110,15 @@ appium
110
110
  | `navigate` | Navigate to a URL |
111
111
  | `get_visible_elements` | Get visible, interactable elements on the page. Supports `inViewportOnly` (default: true) to filter viewport elements, and `includeContainers` (default: false) to include layout containers on mobile |
112
112
  | `get_accessibility` | Get accessibility tree with semantic element information |
113
- | `scroll_down` | Scroll down by specified pixels |
114
- | `scroll_up` | Scroll up by specified pixels |
113
+ | `scroll` | Scroll in a direction (up/down) by specified pixels |
115
114
  | `take_screenshot` | Capture a screenshot |
116
115
 
117
116
  ### Element Interaction (Web & Mobile)
118
117
 
119
- | Tool | Description |
120
- |--------------------|-----------------------------------------------------------------|
121
- | `find_element` | Find an element using CSS selectors, XPath, or mobile selectors |
122
- | `click_element` | Click an element |
123
- | `click_via_text` | Click an element by text content |
124
- | `set_value` | Type text into input fields |
125
- | `get_element_text` | Get text content of an element |
126
- | `is_displayed` | Check if an element is displayed |
118
+ | Tool | Description |
119
+ |-----------------|-----------------------------|
120
+ | `click_element` | Click an element |
121
+ | `set_value` | Type text into input fields |
127
122
 
128
123
  ### Cookie Management (Web)
129
124
 
@@ -139,7 +134,6 @@ appium
139
134
  |-----------------|-------------------------------------------|
140
135
  | `tap_element` | Tap an element by selector or coordinates |
141
136
  | `swipe` | Swipe in a direction (up/down/left/right) |
142
- | `long_press` | Long press an element or coordinates |
143
137
  | `drag_and_drop` | Drag from one location to another |
144
138
 
145
139
  ### App Lifecycle (iOS/Android)
@@ -147,8 +141,6 @@ appium
147
141
  | Tool | Description |
148
142
  |-----------------|--------------------------------------------------------------|
149
143
  | `get_app_state` | Check app state (installed, running, background, foreground) |
150
- | `activate_app` | Bring app to foreground |
151
- | `terminate_app` | Terminate a running app |
152
144
 
153
145
  ### Context Switching (Hybrid Apps)
154
146
 
@@ -160,19 +152,11 @@ appium
160
152
 
161
153
  ### Device Control (iOS/Android)
162
154
 
163
- | Tool | Description |
164
- |---------------------------------------|-----------------------------------------------|
165
- | `get_device_info` | Get device platform, version, screen size |
166
- | `rotate_device` | Rotate to portrait or landscape orientation |
167
- | `get_orientation` | Get current device orientation |
168
- | `lock_device` / `unlock_device` | Lock or unlock device screen |
169
- | `is_device_locked` | Check if device is locked |
170
- | `shake_device` | Shake the device (iOS only) |
171
- | `send_keys` | Send keyboard input (Android only) |
172
- | `press_key_code` | Press Android key code (BACK=4, HOME=3, etc.) |
173
- | `hide_keyboard` / `is_keyboard_shown` | Control on-screen keyboard |
174
- | `open_notifications` | Open notifications panel (Android only) |
175
- | `get_geolocation` / `set_geolocation` | Get or set device GPS location |
155
+ | Tool | Description |
156
+ |---------------------------------------|---------------------------------|
157
+ | `rotate_device` | Rotate to portrait or landscape |
158
+ | `hide_keyboard` | Hide on-screen keyboard |
159
+ | `get_geolocation` / `set_geolocation` | Get or set device GPS location |
176
160
 
177
161
  ## Usage Examples
178
162