2020-12-30 10:11:59 +00:00
|
|
|
declare namespace Cypress {
|
|
|
|
interface Chainable {
|
2021-01-01 13:31:53 +00:00
|
|
|
$login(redirectTo?: string): Chainable<AUTWindow>
|
|
|
|
$loginAsNonAdmin(redirectTo?: string): Chainable<AUTWindow>
|
2020-12-30 18:44:47 +00:00
|
|
|
$each(dataset: Array<Array<any>>, callback: Function): void
|
2020-12-30 22:37:41 +00:00
|
|
|
$confirm(): void
|
2021-01-01 13:31:53 +00:00
|
|
|
$clickSidebarItem(sidebarItemText: string): Chainable<JQuery>
|
2020-12-31 19:01:09 +00:00
|
|
|
|
2021-01-01 19:53:58 +00:00
|
|
|
/**
|
|
|
|
* Mock audio playback, including intercepting the media request, album thumbnail, media info etc.
|
|
|
|
*/
|
|
|
|
$mockPlayback(): void
|
|
|
|
|
2021-01-02 11:58:46 +00:00
|
|
|
/**
|
|
|
|
* Queue several songs from the All Song screen.
|
|
|
|
* @param count
|
|
|
|
*/
|
|
|
|
$queueSeveralSongs(count?: number): void
|
|
|
|
|
|
|
|
$assertPlaylistSongCount(name: string, count: number): void
|
|
|
|
$assertFavoriteSongCount(count: number): void
|
|
|
|
|
2020-12-31 19:01:09 +00:00
|
|
|
/**
|
|
|
|
* Support finding an element within an element identified with a test ID.
|
|
|
|
* For example, given a DOM like this:
|
|
|
|
* <form data-testid="my-form">
|
|
|
|
* <input name="email">
|
|
|
|
* </form>
|
|
|
|
* then the input can be accessed with:
|
|
|
|
* cy.$findInTestId('my-form input[name=email]')
|
|
|
|
* which is identical to
|
|
|
|
* cy.findByTestId('my-form').find('input[name=email]')
|
|
|
|
*/
|
|
|
|
$findInTestId<E extends Node = HTMLElement>(selector: string): Chainable<JQuery<E>>
|
2020-12-30 10:11:59 +00:00
|
|
|
}
|
|
|
|
}
|