nightwatch.d.ts 337 B

1234567891011
  1. import { NightwatchCustomAssertions, NightwatchCustomCommands } from 'nightwatch'
  2. declare module 'nightwatch' {
  3. interface NightwatchCustomAssertions {
  4. elementHasCount: (selector: string, count: number) => NightwatchBrowser
  5. }
  6. interface NightwatchCustomCommands {
  7. strictClick: (selector: string) => NightwatchBrowser
  8. }
  9. }