import WebElement from "./webElement"; export default class WebElements { selector: string; constructor(selector: string); toArray(): WebElement[]; getElementMatchingAttribute(key: string, value: string): WebElement; getElementMatchingText(text: string): WebElement; getElementContainingAttribute(key: string, value: string): WebElement; getElementContainingText(text: string): WebElement; getTextArray(): string[]; isTextEqualsArray(expected: string[], preferred?: boolean): void; isTextContainingArray(expected: string[], preferred: boolean): void; checkTextEqualsArray(expected: string[], preferred?: boolean): void; checkTextContainsArray(expected: string[], preferred: boolean): void; }