UNPKG

appium-xcuitest-driver

Version:

Appium driver for iOS using XCUITest for backend

19 lines 1 kB
declare namespace _default { /** * Return the language-specific strings for an app * * @param {string} language - The language abbreviation to fetch app strings mapping for. * If no language is provided then strings for the 'en language would be returned * @param {string|null} [stringFile=null] - Relative path to the corresponding .strings * file starting from the corresponding .lproj folder, e.g., `base/main.strings`. If omitted, * then Appium will make its best guess where the file is. * * @returns {Promise<import('@appium/types').StringRecord<string>>} A record of localized keys to localized text * * @this {XCUITestDriver} */ function getStrings(this: import("../driver").XCUITestDriver, language: string, stringFile?: string | null): Promise<import("@appium/types").StringRecord<string>>; } export default _default; export type XCUITestDriver = import("../driver").XCUITestDriver; //# sourceMappingURL=app-strings.d.ts.map