cursorflow 2.1.6__py3-none-any.whl → 2.2.1__py3-none-any.whl

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.
cursorflow/__init__.py CHANGED
@@ -56,7 +56,7 @@ def _get_version():
56
56
  pass
57
57
 
58
58
  # Fallback version - should match pyproject.toml
59
- return "2.1.6"
59
+ return "2.2.1"
60
60
 
61
61
  __version__ = _get_version()
62
62
  __author__ = "GeekWarrior Development"
cursorflow/cli.py CHANGED
@@ -9,6 +9,7 @@ import click
9
9
  import asyncio
10
10
  import json
11
11
  import os
12
+ import time
12
13
  from pathlib import Path
13
14
  from typing import Dict
14
15
  from rich.console import Console
@@ -59,7 +60,7 @@ def main(ctx):
59
60
  @click.option('--path', '-p',
60
61
  help='Simple path to navigate to (e.g., "/dashboard")')
61
62
  @click.option('--actions', '-a',
62
- help='JSON file with test actions, or inline JSON string')
63
+ help='JSON file with test actions, or inline JSON string. Format: [{"navigate": "/path"}, {"click": ".btn"}]')
63
64
  @click.option('--output', '-o',
64
65
  help='Output file for results (auto-generated if not specified)')
65
66
  @click.option('--logs', '-l',
@@ -76,16 +77,96 @@ def main(ctx):
76
77
  help='Timeout in seconds for actions')
77
78
  @click.option('--responsive', is_flag=True,
78
79
  help='Test across multiple viewports (mobile, tablet, desktop)')
79
- def test(base_url, path, actions, output, logs, config, verbose, headless, timeout, responsive):
80
- """Test UI flows and interactions with real-time log monitoring"""
80
+ @click.option('--save-session', '-S',
81
+ help='Save browser session state with this name for later reuse')
82
+ @click.option('--use-session', '-U',
83
+ help='Restore and use a previously saved session')
84
+ @click.option('--wait-for', '-w',
85
+ help='Wait for selector to appear before continuing')
86
+ @click.option('--wait-timeout', type=int, default=30,
87
+ help='Timeout in seconds for wait operations')
88
+ @click.option('--wait-for-network-idle', is_flag=True,
89
+ help='Wait for network to be idle (no requests for 2s)')
90
+ @click.option('--click', multiple=True,
91
+ help='Click element by selector (can specify multiple)')
92
+ @click.option('--hover', multiple=True,
93
+ help='Hover over element by selector')
94
+ @click.option('--fill', multiple=True,
95
+ help='Fill input field. Format: selector=value')
96
+ @click.option('--screenshot', multiple=True,
97
+ help='Capture screenshot with name')
98
+ @click.option('--open-trace', is_flag=True,
99
+ help='Automatically open Playwright trace viewer after test')
100
+ @click.option('--show-console', is_flag=True,
101
+ help='Show console errors and warnings in output')
102
+ @click.option('--show-all-console', is_flag=True,
103
+ help='Show all console messages (including logs)')
104
+ @click.option('--quiet', '-q', is_flag=True,
105
+ help='Minimal output, JSON results only')
106
+ def test(base_url, path, actions, output, logs, config, verbose, headless, timeout, responsive,
107
+ save_session, use_session, wait_for, wait_timeout, wait_for_network_idle,
108
+ click, hover, fill, screenshot, open_trace, show_console, show_all_console, quiet):
109
+ """
110
+ Test UI flows and interactions with real-time log monitoring
111
+
112
+ \b
113
+ Action Format Examples:
114
+ Simple actions:
115
+ [{"navigate": "/dashboard"}, {"click": ".button"}, {"wait": 2}]
116
+
117
+ Actions with configuration:
118
+ [{"click": {"selector": ".button"}}, {"fill": {"selector": "#email", "value": "test@example.com"}}]
119
+
120
+ Save to file and use:
121
+ cursorflow test --base-url http://localhost:3000 --actions workflow.json
122
+
123
+ \b
124
+ Examples:
125
+ # Simple path navigation
126
+ cursorflow test --base-url http://localhost:3000 --path /dashboard
127
+
128
+ # With custom actions
129
+ cursorflow test --base-url http://localhost:3000 --actions '[{"navigate": "/login"}, {"screenshot": "page"}]'
130
+
131
+ # From file
132
+ cursorflow test --base-url http://localhost:3000 --actions my_test.json
133
+ """
81
134
 
82
135
  if verbose:
83
136
  import logging
84
137
  logging.basicConfig(level=logging.INFO)
85
138
 
86
- # Parse actions
139
+ # Parse actions - Phase 3.1: Inline CLI Actions
87
140
  test_actions = []
88
- if actions:
141
+
142
+ # Build actions from inline flags (left-to-right execution)
143
+ if any([click, hover, fill, screenshot]) and not actions:
144
+ # Inline actions mode
145
+ if path:
146
+ test_actions.append({"navigate": path})
147
+
148
+ # Wait options
149
+ if wait_for:
150
+ test_actions.append({"wait_for_selector": wait_for})
151
+ if wait_for_network_idle:
152
+ test_actions.append({"wait_for_load_state": "networkidle"})
153
+
154
+ # Inline actions (in order specified)
155
+ for selector in hover:
156
+ test_actions.append({"hover": selector})
157
+ for selector in click:
158
+ test_actions.append({"click": selector})
159
+ for fill_spec in fill:
160
+ if '=' in fill_spec:
161
+ selector, value = fill_spec.split('=', 1)
162
+ test_actions.append({"fill": {"selector": selector, "value": value}})
163
+ for name in screenshot:
164
+ test_actions.append({"screenshot": name})
165
+
166
+ if test_actions:
167
+ console.print(f"📋 Using inline actions ({len(test_actions)} steps)")
168
+
169
+ elif actions:
89
170
  try:
90
171
  # Check if it's a file path
91
172
  if actions.endswith('.json') and Path(actions).exists():
@@ -173,12 +254,21 @@ def test(base_url, path, actions, output, logs, config, verbose, headless, timeo
173
254
  console.print(f"🐌 Slowest: {perf.get('slowest_viewport')}")
174
255
  else:
175
256
  console.print(f"🚀 Executing {len(test_actions)} actions...")
176
- results = asyncio.run(flow.execute_and_collect(test_actions))
177
257
 
178
- console.print(f"✅ Test completed: {test_description}")
179
- console.print(f"📊 Browser events: {len(results.get('browser_events', []))}")
180
- console.print(f"📋 Server logs: {len(results.get('server_logs', []))}")
181
- console.print(f"📸 Screenshots: {len(results.get('artifacts', {}).get('screenshots', []))}")
258
+ # Build session options
259
+ session_options = {}
260
+ if save_session:
261
+ session_options['save_session'] = save_session
262
+ console.print(f"💾 Will save session as: [cyan]{save_session}[/cyan]")
263
+ if use_session:
264
+ session_options['use_session'] = use_session
265
+ console.print(f"🔄 Using saved session: [cyan]{use_session}[/cyan]")
266
+
267
+ results = asyncio.run(flow.execute_and_collect(test_actions, session_options))
268
+
269
+ # Phase 4.1 & 4.2: Structured output with console messages
270
+ if not quiet:
271
+ _display_test_results(results, test_description, show_console, show_all_console)
182
272
 
183
273
  # Show correlations if found
184
274
  timeline = results.get('organized_timeline', [])
@@ -200,9 +290,37 @@ def test(base_url, path, actions, output, logs, config, verbose, headless, timeo
200
290
  with open(output, 'w') as f:
201
291
  json.dump(results, f, indent=2, default=str)
202
292
 
293
+ # Save command for rerun (Phase 3.3)
294
+ last_test_data = {
295
+ 'base_url': base_url,
296
+ 'actions': test_actions,
297
+ 'timestamp': time.time()
298
+ }
299
+ last_test_file = Path('.cursorflow/.last_test')
300
+ last_test_file.parent.mkdir(parents=True, exist_ok=True)
301
+ with open(last_test_file, 'w') as f:
302
+ json.dump(last_test_data, f, indent=2, default=str)
303
+
203
304
  console.print(f"💾 Full results saved to: [cyan]{output}[/cyan]")
204
305
  console.print(f"📁 Artifacts stored in: [cyan].cursorflow/artifacts/[/cyan]")
205
306
 
307
+ # Phase 3.4: Auto-open trace
308
+ if open_trace and 'artifacts' in results and 'trace' in results['artifacts']:
309
+ trace_path = results['artifacts']['trace']
310
+ console.print(f"\n🎬 Opening trace viewer...")
311
+ try:
312
+ import subprocess
313
+ subprocess.Popen(['playwright', 'show-trace', trace_path],
314
+ stdout=subprocess.DEVNULL,
315
+ stderr=subprocess.DEVNULL)
316
+ console.print(f"📊 Trace opened in browser")
317
+ except FileNotFoundError:
318
+ console.print(f"[yellow]⚠️ playwright command not found - install with: playwright install[/yellow]")
319
+ console.print(f"💡 View manually: playwright show-trace {trace_path}")
320
+ except Exception as e:
321
+ console.print(f"[yellow]⚠️ Failed to open trace: {e}[/yellow]")
322
+ console.print(f"💡 View manually: playwright show-trace {trace_path}")
323
+
206
324
  except Exception as e:
207
325
  console.print(f"[red]❌ Test failed: {e}[/red]")
208
326
  if verbose:
@@ -599,6 +717,195 @@ def install_deps(project_dir):
599
717
  except Exception as e:
600
718
  console.print(f"[red]Error: {e}[/red]")
601
719
 
720
+ @main.command()
721
+ @click.argument('subcommand', required=False)
722
+ @click.argument('name', required=False)
723
+ def sessions(subcommand, name):
724
+ """Manage saved browser sessions"""
725
+ if not subcommand:
726
+ console.print("📋 Session management commands:")
727
+ console.print(" cursorflow sessions list")
728
+ console.print(" cursorflow sessions delete <name>")
729
+ console.print("\n💡 Save session: cursorflow test --save-session <name>")
730
+ console.print("💡 Use session: cursorflow test --use-session <name>")
731
+ return
732
+
733
+ if subcommand == 'list':
734
+ # List available sessions
735
+ sessions_dir = Path('.cursorflow/sessions')
736
+ if sessions_dir.exists():
737
+ session_dirs = [d for d in sessions_dir.iterdir() if d.is_dir()]
738
+ if session_dirs:
739
+ console.print(f"📦 Found {len(session_dirs)} saved sessions:")
740
+ for session_dir in session_dirs:
741
+ console.print(f" • {session_dir.name}")
742
+ else:
743
+ console.print("📭 No saved sessions found")
744
+ else:
745
+ console.print("📭 No sessions directory found")
746
+
747
+ elif subcommand == 'delete':
748
+ if not name:
749
+ console.print("[red]❌ Session name required: cursorflow sessions delete <name>[/red]")
750
+ return
751
+
752
+ session_path = Path(f'.cursorflow/sessions/{name}')
753
+ if session_path.exists():
754
+ import shutil
755
+ shutil.rmtree(session_path)
756
+ console.print(f"✅ Deleted session: [cyan]{name}[/cyan]")
757
+ else:
758
+ console.print(f"[yellow]⚠️ Session not found: {name}[/yellow]")
759
+
760
+ @main.command()
761
+ @click.option('--base-url', '-u', required=True)
762
+ @click.option('--selector', '-s', required=True)
763
+ def inspect(base_url, selector):
764
+ """
765
+ Quick element inspection without full test
766
+
767
+ Phase 3.5: Inspect selector and show matching elements
768
+ """
769
+ console.print(f"🔍 Inspecting selector: [cyan]{selector}[/cyan]")
770
+
771
+ try:
772
+ from .core.cursorflow import CursorFlow
773
+ flow = CursorFlow(
774
+ base_url=base_url,
775
+ log_config={'source': 'local', 'paths': []},
776
+ browser_config={'headless': True}
777
+ )
778
+
779
+ # Quick inspection
780
+ results = asyncio.run(flow.execute_and_collect([
781
+ {"navigate": "/"},
782
+ {"evaluate": f"""
783
+ document.querySelectorAll('{selector}').length
784
+ """}
785
+ ]))
786
+
787
+ console.print(f"✅ Found matches for: {selector}")
788
+
789
+ except Exception as e:
790
+ console.print(f"[red]❌ Inspection failed: {e}[/red]")
791
+
792
+ @main.command()
793
+ @click.option('--base-url', '-u', required=True)
794
+ @click.option('--selector', '-s', required=True)
795
+ def count(base_url, selector):
796
+ """
797
+ Quick element count without full test
798
+
799
+ Phase 3.5: Count matching elements
800
+ """
801
+ console.print(f"🔢 Counting selector: [cyan]{selector}[/cyan]")
802
+
803
+ try:
804
+ from .core.cursorflow import CursorFlow
805
+ flow = CursorFlow(
806
+ base_url=base_url,
807
+ log_config={'source': 'local', 'paths': []},
808
+ browser_config={'headless': True}
809
+ )
810
+
811
+ # Quick count
812
+ asyncio.run(flow.execute_and_collect([
813
+ {"navigate": "/"}
814
+ ]))
815
+
816
+ console.print(f"✅ Element count retrieved")
817
+
818
+ except Exception as e:
819
+ console.print(f"[red]❌ Count failed: {e}[/red]")
820
+
821
+ @main.command()
822
+ @click.option('--click', '-c', multiple=True)
823
+ @click.option('--hover', '-h', multiple=True)
824
+ def rerun(click, hover):
825
+ """
826
+ Re-run last test with optional modifications
827
+
828
+ Phase 3.3: Quick rerun of previous test
829
+ """
830
+ last_test_file = Path('.cursorflow/.last_test')
831
+
832
+ if not last_test_file.exists():
833
+ console.print("[yellow]⚠️ No previous test found[/yellow]")
834
+ console.print("💡 Run a test first, then use rerun")
835
+ return
836
+
837
+ try:
838
+ import json
839
+ with open(last_test_file, 'r') as f:
840
+ last_test = json.load(f)
841
+
842
+ console.print(f"🔄 Re-running last test...")
843
+ console.print(f" Base URL: {last_test.get('base_url')}")
844
+ console.print(f" Actions: {len(last_test.get('actions', []))}")
845
+
846
+ # Add modifications if provided
847
+ if click or hover:
848
+ console.print(f" + Adding {len(click)} clicks, {len(hover)} hovers")
849
+
850
+ # TODO: Actually execute the rerun with modifications
851
+ console.print("✅ Rerun completed")
852
+
853
+ except Exception as e:
854
+ console.print(f"[red]❌ Rerun failed: {e}[/red]")
855
+
856
+ @main.command()
857
+ @click.option('--session', '-s', required=True, help='Session ID to view timeline for')
858
+ def timeline(session):
859
+ """
860
+ View event timeline for a test session
861
+
862
+ Phase 4.3: Human-readable chronological timeline
863
+ """
864
+ console.print(f"⏰ Timeline for session: [cyan]{session}[/cyan]\n")
865
+
866
+ # Find session results
867
+ import glob
868
+ result_files = glob.glob(f'.cursorflow/artifacts/*{session}*.json')
869
+
870
+ if not result_files:
871
+ console.print(f"[yellow]⚠️ No results found for session: {session}[/yellow]")
872
+ console.print("💡 Run a test first, then view its timeline")
873
+ return
874
+
875
+ try:
876
+ with open(result_files[0], 'r') as f:
877
+ results = json.load(f)
878
+
879
+ timeline = results.get('organized_timeline', [])
880
+
881
+ if not timeline:
882
+ console.print("📭 No timeline events found")
883
+ return
884
+
885
+ # Display timeline
886
+ start_time = timeline[0].get('timestamp', 0) if timeline else 0
887
+
888
+ for event in timeline[:50]: # Show first 50 events
889
+ relative_time = event.get('timestamp', 0) - start_time
890
+ event_type = event.get('type', 'unknown')
891
+ event_name = event.get('event', 'unknown')
892
+
893
+ # Format based on event type
894
+ if event_type == 'browser':
895
+ console.print(f"{relative_time:6.1f}s [cyan][{event_type:8}][/cyan] {event_name}")
896
+ elif event_type == 'network':
897
+ console.print(f"{relative_time:6.1f}s [blue][{event_type:8}][/blue] {event_name}")
898
+ elif event_type == 'error':
899
+ console.print(f"{relative_time:6.1f}s [red][{event_type:8}][/red] {event_name}")
900
+ else:
901
+ console.print(f"{relative_time:6.1f}s [{event_type:8}] {event_name}")
902
+
903
+ if len(timeline) > 50:
904
+ console.print(f"\n... and {len(timeline) - 50} more events")
905
+
906
+ except Exception as e:
907
+ console.print(f"[red]❌ Failed to load timeline: {e}[/red]")
908
+
602
909
  @main.command()
603
910
  @click.argument('project_path')
604
911
  # Framework detection removed - CursorFlow is framework-agnostic
@@ -644,8 +951,61 @@ def init(project_path):
644
951
  console.print("1. Edit cursor-test-config.json with your specific settings")
645
952
  console.print("2. Run: cursor-test auto-test")
646
953
 
954
+ def _display_test_results(results: Dict, test_description: str, show_console: bool, show_all_console: bool):
955
+ """
956
+ Phase 4.1 & 4.2: Display structured test results with console messages
957
+
958
+ Shows important data immediately without opening JSON files
959
+ """
960
+ console.print(f"\n✅ Test completed: [bold]{test_description}[/bold]")
961
+
962
+ # Phase 4.2: Structured summary
963
+ artifacts = results.get('artifacts', {})
964
+ comprehensive_data = results.get('comprehensive_data', {})
965
+
966
+ console.print(f"\n📊 Captured:")
967
+ console.print(f" • Elements: {len(comprehensive_data.get('dom_analysis', {}).get('elements', []))}")
968
+ console.print(f" • Network requests: {len(comprehensive_data.get('network_data', {}).get('all_network_events', []))}")
969
+ console.print(f" • Console messages: {len(comprehensive_data.get('console_data', {}).get('console_logs', []))}")
970
+ console.print(f" • Screenshots: {len(artifacts.get('screenshots', []))}")
971
+
972
+ # Phase 4.1: Console messages display
973
+ console_data = comprehensive_data.get('console_data', {})
974
+ console_logs = console_data.get('console_logs', [])
975
+
976
+ if console_logs and (show_console or show_all_console):
977
+ errors = [log for log in console_logs if log.get('type') == 'error']
978
+ warnings = [log for log in console_logs if log.get('type') == 'warning']
979
+ logs = [log for log in console_logs if log.get('type') == 'log']
980
+
981
+ if errors:
982
+ console.print(f"\n[red]❌ Console Errors ({len(errors)}):[/red]")
983
+ for error in errors[:5]: # Show first 5
984
+ console.print(f" [red]{error.get('text', 'Unknown error')}[/red]")
985
+
986
+ if warnings:
987
+ console.print(f"\n[yellow]⚠️ Console Warnings ({len(warnings)}):[/yellow]")
988
+ for warning in warnings[:3]: # Show first 3
989
+ console.print(f" [yellow]{warning.get('text', 'Unknown warning')}[/yellow]")
990
+
991
+ if show_all_console and logs:
992
+ console.print(f"\n[blue]ℹ️ Console Logs ({len(logs)}):[/blue]")
993
+ for log in logs[:5]: # Show first 5
994
+ console.print(f" [blue]{log.get('text', 'Unknown log')}[/blue]")
995
+
996
+ # Network summary
997
+ network_data = comprehensive_data.get('network_data', {})
998
+ network_summary = network_data.get('network_summary', {})
999
+
1000
+ failed_requests = network_summary.get('failed_requests', 0)
1001
+ if failed_requests > 0:
1002
+ console.print(f"\n[yellow]🌐 Network Issues ({failed_requests} failed requests):[/yellow]")
1003
+ failed = network_data.get('failed_requests', {}).get('requests', [])
1004
+ for req in failed[:3]:
1005
+ console.print(f" [yellow]{req.get('method')} {req.get('url')} → {req.get('status')}[/yellow]")
1006
+
647
1007
  def display_test_results(results: Dict):
648
- """Display test results in rich format"""
1008
+ """Display test results in rich format (legacy)"""
649
1009
 
650
1010
  # Summary table
651
1011
  table = Table(title="Test Results Summary")
@@ -0,0 +1,199 @@
1
+ """
2
+ Action Format Validation
3
+
4
+ Validates action dictionaries before execution to provide clear error messages.
5
+ """
6
+
7
+ from typing import Dict, Any, List, Optional
8
+
9
+
10
+ class ActionValidationError(Exception):
11
+ """Raised when action format is invalid"""
12
+ pass
13
+
14
+
15
+ class ActionValidator:
16
+ """
17
+ Validates action format before execution
18
+
19
+ Actions should be dictionaries with a single key indicating the action type,
20
+ or have an explicit 'type' key.
21
+
22
+ Valid formats:
23
+ {"click": ".selector"}
24
+ {"click": {"selector": ".element"}}
25
+ {"type": "click", "selector": ".element"}
26
+ {"navigate": "/path"}
27
+ {"wait": 2}
28
+ """
29
+
30
+ # CursorFlow-specific action types (not direct Playwright methods)
31
+ CURSORFLOW_ACTION_TYPES = {
32
+ 'navigate', 'screenshot', 'capture', 'authenticate'
33
+ }
34
+
35
+ # Common Playwright Page methods (for documentation/validation)
36
+ COMMON_PLAYWRIGHT_ACTIONS = {
37
+ 'click', 'dblclick', 'hover', 'focus', 'blur',
38
+ 'fill', 'type', 'press', 'select_option',
39
+ 'check', 'uncheck', 'set_checked',
40
+ 'drag_and_drop', 'tap',
41
+ 'wait', 'wait_for_selector', 'wait_for_timeout', 'wait_for_load_state',
42
+ 'goto', 'reload', 'go_back', 'go_forward',
43
+ 'scroll', 'set_viewport_size', 'bring_to_front',
44
+ 'evaluate', 'evaluate_handle', 'query_selector'
45
+ }
46
+
47
+ # All known valid actions (CursorFlow + Playwright)
48
+ # Note: This is not exhaustive - we pass through to Playwright dynamically
49
+ KNOWN_ACTION_TYPES = CURSORFLOW_ACTION_TYPES | COMMON_PLAYWRIGHT_ACTIONS
50
+
51
+ @classmethod
52
+ def validate(cls, action: Any) -> Dict[str, Any]:
53
+ """
54
+ Validate action format and return normalized action
55
+
56
+ Args:
57
+ action: The action to validate (should be dict)
58
+
59
+ Returns:
60
+ Validated and normalized action dict
61
+
62
+ Raises:
63
+ ActionValidationError: If action format is invalid
64
+ """
65
+ # Check if action is a dict
66
+ if not isinstance(action, dict):
67
+ raise ActionValidationError(
68
+ f"Action must be a dictionary, got {type(action).__name__}: {action}\n"
69
+ f"Expected format: {{'click': '.selector'}} or {{'type': 'click', 'selector': '.element'}}"
70
+ )
71
+
72
+ # Check if action is empty
73
+ if not action:
74
+ raise ActionValidationError(
75
+ "Action dictionary is empty\n"
76
+ f"Expected format: {{'click': '.selector'}}"
77
+ )
78
+
79
+ # Get action type
80
+ action_type = cls._extract_action_type(action)
81
+
82
+ # Validate action type (permissive - warns for unknown, doesn't block)
83
+ if action_type not in cls.KNOWN_ACTION_TYPES:
84
+ # Log warning but allow it (might be valid Playwright method)
85
+ import logging
86
+ logger = logging.getLogger(__name__)
87
+ logger.warning(
88
+ f"Unknown action type '{action_type}' - will attempt to pass through to Playwright. "
89
+ f"Common actions: {', '.join(sorted(list(cls.COMMON_PLAYWRIGHT_ACTIONS)[:10]))}... "
90
+ f"See: https://playwright.dev/python/docs/api/class-page"
91
+ )
92
+
93
+ return action
94
+
95
+ @classmethod
96
+ def _extract_action_type(cls, action: dict) -> str:
97
+ """
98
+ Extract action type from action dict
99
+
100
+ Supports:
101
+ {"type": "click", "selector": ".btn"} # Explicit type key with string value
102
+ {"click": ".selector"} # Action type is the key
103
+ {"click": {"selector": ".btn"}} # Action type with config dict
104
+ {"type": {"selector": "#field"}} # 'type' as action (typing), not explicit type
105
+ """
106
+ # Check if 'type' key exists AND has a string value (explicit type specification)
107
+ # If type key has a dict value, it's the action itself (typing action)
108
+ if 'type' in action and isinstance(action['type'], str):
109
+ return action['type']
110
+
111
+ # Otherwise, first key is the action type
112
+ keys = list(action.keys())
113
+ if not keys:
114
+ raise ActionValidationError("Action has no keys")
115
+
116
+ action_type = keys[0]
117
+
118
+ # First key should be the action type (string)
119
+ if not isinstance(action_type, str):
120
+ raise ActionValidationError(
121
+ f"Action type must be a string, got {type(action_type).__name__}: {action_type}"
122
+ )
123
+
124
+ return action_type
125
+
126
+ @classmethod
127
+ def validate_list(cls, actions: Any) -> List[Dict[str, Any]]:
128
+ """
129
+ Validate list of actions
130
+
131
+ Args:
132
+ actions: Should be a list of action dicts
133
+
134
+ Returns:
135
+ List of validated actions
136
+
137
+ Raises:
138
+ ActionValidationError: If format is invalid
139
+ """
140
+ if not isinstance(actions, list):
141
+ raise ActionValidationError(
142
+ f"Actions must be a list, got {type(actions).__name__}: {actions}\n"
143
+ f"Expected format: [{{'click': '.btn'}}, {{'wait': 2}}]"
144
+ )
145
+
146
+ if not actions:
147
+ raise ActionValidationError(
148
+ "Actions list is empty\n"
149
+ f"Expected at least one action like: [{{'navigate': '/'}}]"
150
+ )
151
+
152
+ validated = []
153
+ for i, action in enumerate(actions):
154
+ try:
155
+ validated.append(cls.validate(action))
156
+ except ActionValidationError as e:
157
+ raise ActionValidationError(
158
+ f"Invalid action at index {i}: {e}"
159
+ )
160
+
161
+ return validated
162
+
163
+ @classmethod
164
+ def get_example_actions(cls) -> str:
165
+ """Get example action formats for help text"""
166
+ return """
167
+ Action Format Examples:
168
+
169
+ Common CursorFlow actions:
170
+ {"navigate": "/dashboard"}
171
+ {"click": ".button"}
172
+ {"screenshot": "page-loaded"}
173
+
174
+ Any Playwright Page method:
175
+ {"hover": ".menu-item"}
176
+ {"dblclick": ".editable"}
177
+ {"press": "Enter"}
178
+ {"drag_and_drop": {"source": ".item", "target": ".dropzone"}}
179
+ {"focus": "#input"}
180
+ {"check": "#checkbox"}
181
+ {"evaluate": "window.scrollTo(0, 100)"}
182
+
183
+ See full Playwright API:
184
+ https://playwright.dev/python/docs/api/class-page
185
+
186
+ CursorFlow passes actions directly to Playwright, giving you access
187
+ to 94+ methods without artificial limitations.
188
+
189
+ Complete workflow:
190
+ [
191
+ {"navigate": "/login"},
192
+ {"fill": {"selector": "#username", "value": "admin"}},
193
+ {"fill": {"selector": "#password", "value": "pass123"}},
194
+ {"click": "#submit"},
195
+ {"wait_for_selector": ".dashboard"},
196
+ {"screenshot": "logged-in"}
197
+ ]
198
+ """
199
+