1234567891011121314151617181920212223242526272829303132333435 |
- /// <reference types="node" />
- import * as stream from 'stream';
- import { WebDriverCommand } from './webdriver_commands';
- /**
- * Logs WebDriver commands, transforming the command into a user-friendly description.
- */
- export declare class WebDriverLogger {
- logStream: stream.Writable;
- readonly logName: string;
- constructor();
- /**
- * Start logging to the specified directory. Will create a file named
- * 'webdriver_log_<process id>.txt'
- *
- * @param logDir The directory to create log files in.
- */
- setLogDir(logDir: string): void;
- /**
- * Logs a webdriver command to the log file.
- *
- * @param command The command to log.
- */
- logWebDriverCommand(command: WebDriverCommand): void;
- /**
- * Log an arbitrary event to the log file.
- *
- * @param msg The message to log.
- * @param sessionId The session id associated with the event.
- * @param elapsedMs How long the event took, in ms.
- */
- logEvent(msg: string, sessionId: string, elapsedMs: number): void;
- private renderData(command);
- private renderResponse(command);
- private timestamp();
- }
|