UNPKG

@memlab/e2e

Version:

memlab browser E2E interaction libraries

25 lines 677 B
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * @oncall memory_lab */ import type { Page } from 'puppeteer'; import BaseOperation from './BaseOperation'; type UploadOptions = { delay?: number; file: string; }; declare class UploadOperation extends BaseOperation { kind: string; selector: string; delay: number; file: string; constructor(selector: string, args: UploadOptions); act(page: Page): Promise<void>; } export default UploadOperation; //# sourceMappingURL=UploadOperation.d.ts.map