rsnext/test/lib/next-webdriver.d.ts
2020-05-18 15:24:37 -04:00

28 lines
630 B
TypeScript

interface Chain {
elementByCss: (selector: string) => Chain
elementById: () => Chain
getValue: () => Chain
text: () => Chain
type: () => Chain
moveTo: () => Chain
getComputedCss: () => Chain
getAttribute: () => Chain
hasElementByCssSelector: () => Chain
click: () => Chain
elementsByCss: () => Chain
waitForElementByCss: () => Chain
eval: () => Chain
log: () => Chain
url: () => Chain
back: () => Chain
forward: () => Chain
refresh: () => Chain
close: () => Chain
quit: () => Chain
}
export default function (
appPort: number,
path: string,
waitHydration?: boolean
): Promise<Chain>