All files / src/lib browser-client.ts

0% Statements 0/204
0% Branches 0/1
0% Functions 0/1
0% Lines 0/204

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
/**
 * Browser Automation Client for ZCLAW
 * Provides TypeScript API for Fantoccini-based browser automation
 */
 
import { invoke } from '@tauri-apps/api/core';
 
// ============================================================================
// Types
// ============================================================================
 
export interface BrowserSessionResult {
  session_id: string;
}
 
export interface BrowserSessionInfo {
  id: string;
  name: string;
  current_url: string | null;
  title: string | null;
  status: string;
  created_at: string;
  last_activity: string;
}
 
export interface BrowserNavigationResult {
  url: string | null;
  title: string | null;
}
 
export interface BrowserElementInfo {
  selector: string;
  tag_name: string | null;
  text: string | null;
  is_displayed: boolean;
  is_enabled: boolean;
  is_selected: boolean;
  location: BrowserElementLocation | null;
  size: BrowserElementSize | null;
}
 
export interface BrowserElementLocation {
  x: number;
  y: number;
}
 
export interface BrowserElementSize {
  width: number;
  height: number;
}
 
export interface BrowserScreenshotResult {
  base64: string;
  format: string;
}
 
export interface FormFieldData {
  selector: string;
  value: string;
}
 
// ============================================================================
// Session Management
// ============================================================================
 
/**
 * Create a new browser session
 */
export async function createSession(options?: {
  webdriverUrl?: string;
  headless?: boolean;
  browserType?: 'chrome' | 'firefox' | 'edge' | 'safari';
  windowWidth?: number;
  windowHeight?: number;
}): Promise<BrowserSessionResult> {
  return invoke('browser_create_session', {
    webdriverUrl: options?.webdriverUrl,
    headless: options?.headless,
    browserType: options?.browserType,
    windowWidth: options?.windowWidth,
    windowHeight: options?.windowHeight,
  });
}
 
/**
 * Close a browser session
 */
export async function closeSession(sessionId: string): Promise<void> {
  return invoke('browser_close_session', { sessionId });
}
 
/**
 * List all browser sessions
 */
export async function listSessions(): Promise<BrowserSessionInfo[]> {
  return invoke('browser_list_sessions');
}
 
/**
 * Get session info
 */
export async function getSession(sessionId: string): Promise<BrowserSessionInfo> {
  return invoke('browser_get_session', { sessionId });
}
 
// ============================================================================
// Navigation
// ============================================================================
 
/**
 * Navigate to URL
 */
export async function navigate(
  sessionId: string,
  url: string
): Promise<BrowserNavigationResult> {
  return invoke('browser_navigate', { sessionId, url });
}
 
/**
 * Go back
 */
export async function back(sessionId: string): Promise<void> {
  return invoke('browser_back', { sessionId });
}
 
/**
 * Go forward
 */
export async function forward(sessionId: string): Promise<void> {
  return invoke('browser_forward', { sessionId });
}
 
/**
 * Refresh page
 */
export async function refresh(sessionId: string): Promise<void> {
  return invoke('browser_refresh', { sessionId });
}
 
/**
 * Get current URL
 */
export async function getCurrentUrl(sessionId: string): Promise<string> {
  return invoke('browser_get_url', { sessionId });
}
 
/**
 * Get page title
 */
export async function getTitle(sessionId: string): Promise<string> {
  return invoke('browser_get_title', { sessionId });
}
 
// ============================================================================
// Element Interaction
// ============================================================================
 
/**
 * Find element by CSS selector
 */
export async function findElement(
  sessionId: string,
  selector: string
): Promise<BrowserElementInfo> {
  return invoke('browser_find_element', { sessionId, selector });
}
 
/**
 * Find multiple elements
 */
export async function findElements(
  sessionId: string,
  selector: string
): Promise<BrowserElementInfo[]> {
  return invoke('browser_find_elements', { sessionId, selector });
}
 
/**
 * Click element
 */
export async function click(sessionId: string, selector: string): Promise<void> {
  return invoke('browser_click', { sessionId, selector });
}
 
/**
 * Type text into element
 */
export async function typeText(
  sessionId: string,
  selector: string,
  text: string,
  clearFirst?: boolean
): Promise<void> {
  return invoke('browser_type', { sessionId, selector, text, clearFirst });
}
 
/**
 * Get element text
 */
export async function getText(sessionId: string, selector: string): Promise<string> {
  return invoke('browser_get_text', { sessionId, selector });
}
 
/**
 * Get element attribute
 */
export async function getAttribute(
  sessionId: string,
  selector: string,
  attribute: string
): Promise<string | null> {
  return invoke('browser_get_attribute', { sessionId, selector, attribute });
}
 
/**
 * Wait for element
 */
export async function waitForElement(
  sessionId: string,
  selector: string,
  timeoutMs?: number
): Promise<BrowserElementInfo> {
  return invoke('browser_wait_for_element', {
    sessionId,
    selector,
    timeoutMs: timeoutMs ?? 10000,
  });
}
 
// ============================================================================
// Advanced Operations
// ============================================================================
 
/**
 * Execute JavaScript
 */
export async function executeScript(
  sessionId: string,
  script: string,
  args?: unknown[]
): Promise<unknown> {
  return invoke('browser_execute_script', { sessionId, script, args });
}
 
/**
 * Take screenshot
 */
export async function screenshot(sessionId: string): Promise<BrowserScreenshotResult> {
  return invoke('browser_screenshot', { sessionId });
}
 
/**
 * Take element screenshot
 */
export async function elementScreenshot(
  sessionId: string,
  selector: string
): Promise<BrowserScreenshotResult> {
  return invoke('browser_element_screenshot', { sessionId, selector });
}
 
/**
 * Get page source
 */
export async function getSource(sessionId: string): Promise<string> {
  return invoke('browser_get_source', { sessionId });
}
 
// ============================================================================
// High-Level Tasks
// ============================================================================
 
/**
 * Scrape page content
 */
export async function scrapePage(
  sessionId: string,
  selectors: string[],
  waitFor?: string,
  timeoutMs?: number
): Promise<Record<string, string[]>> {
  return invoke('browser_scrape_page', {
    sessionId,
    selectors,
    waitFor,
    timeoutMs,
  });
}
 
/**
 * Fill form
 */
export async function fillForm(
  sessionId: string,
  fields: FormFieldData[],
  submitSelector?: string
): Promise<void> {
  return invoke('browser_fill_form', { sessionId, fields, submitSelector });
}
 
// ============================================================================
// Browser Client Class (Convenience Wrapper)
// ============================================================================
 
/**
 * High-level browser client for easier usage
 */
export class Browser {
  private sessionId: string | null = null;
 
  /**
   * Start a new browser session
   */
  async start(options?: {
    webdriverUrl?: string;
    headless?: boolean;
    browserType?: 'chrome' | 'firefox' | 'edge' | 'safari';
    windowWidth?: number;
    windowHeight?: number;
  }): Promise<string> {
    const result = await createSession(options);
    this.sessionId = result.session_id;
    return this.sessionId;
  }
 
  /**
   * Close browser session
   */
  async close(): Promise<void> {
    if (this.sessionId) {
      await closeSession(this.sessionId);
      this.sessionId = null;
    }
  }
 
  /**
   * Get current session ID
   */
  getSessionId(): string | null {
    return this.sessionId;
  }
 
  /**
   * Navigate to URL
   */
  async goto(url: string): Promise<BrowserNavigationResult> {
    this.ensureSession();
    return navigate(this.sessionId!, url);
  }
 
  /**
   * Find element
   */
  async $(selector: string): Promise<BrowserElementInfo> {
    this.ensureSession();
    return findElement(this.sessionId!, selector);
  }
 
  /**
   * Find multiple elements
   */
  async $$(selector: string): Promise<BrowserElementInfo[]> {
    this.ensureSession();
    return findElements(this.sessionId!, selector);
  }
 
  /**
   * Click element
   */
  async click(selector: string): Promise<void> {
    this.ensureSession();
    return click(this.sessionId!, selector);
  }
 
  /**
   * Type text
   */
  async type(selector: string, text: string, clearFirst = false): Promise<void> {
    this.ensureSession();
    return typeText(this.sessionId!, selector, text, clearFirst);
  }
 
  /**
   * Wait for element
   */
  async wait(selector: string, timeoutMs = 10000): Promise<BrowserElementInfo> {
    this.ensureSession();
    return waitForElement(this.sessionId!, selector, timeoutMs);
  }
 
  /**
   * Take screenshot
   */
  async screenshot(): Promise<BrowserScreenshotResult> {
    this.ensureSession();
    return screenshot(this.sessionId!);
  }
 
  /**
   * Execute JavaScript
   */
  async eval(script: string, args?: unknown[]): Promise<unknown> {
    this.ensureSession();
    return executeScript(this.sessionId!, script, args);
  }
 
  /**
   * Get page source
   */
  async source(): Promise<string> {
    this.ensureSession();
    return getSource(this.sessionId!);
  }
 
  /**
   * Get current URL
   */
  async url(): Promise<string> {
    this.ensureSession();
    return getCurrentUrl(this.sessionId!);
  }
 
  /**
   * Get page title
   */
  async title(): Promise<string> {
    this.ensureSession();
    return getTitle(this.sessionId!);
  }
 
  /**
   * Scrape page content
   */
  async scrape(
    selectors: string[],
    waitFor?: string,
    timeoutMs?: number
  ): Promise<Record<string, string[]>> {
    this.ensureSession();
    return scrapePage(this.sessionId!, selectors, waitFor, timeoutMs);
  }
 
  /**
   * Fill form
   */
  async fillForm(fields: FormFieldData[], submitSelector?: string): Promise<void> {
    this.ensureSession();
    return fillForm(this.sessionId!, fields, submitSelector);
  }
 
  private ensureSession(): void {
    if (!this.sessionId) {
      throw new Error('Browser session not started. Call start() first.');
    }
  }
}
 
// Default export
export default Browser;