UNPKG

@material/web

Version:
16 lines 406 B
/** * @license * Copyright 2021 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { Harness } from '../testing/harness.js'; /** * Test harness for buttons. */ export class ButtonHarness extends Harness { async getInteractiveElement() { await this.element.updateComplete; return this.element.renderRoot.querySelector('.button'); } } //# sourceMappingURL=harness.js.map