wdio-reportportal-reporter
Version:
A WebdriverIO v6 plugin. Report results to Report Portal.
30 lines (29 loc) • 851 B
TypeScript
import { LEVEL, MODE } from "./constants";
export declare class Attribute {
key?: string;
value?: string;
constructor(key?: string, value?: string);
}
export declare class SauceLabOptions {
enabled: boolean;
sldc?: string;
constructor(enabled: boolean, sldc?: string);
}
export default class ReporterOptions {
debug: boolean;
autoAttachScreenshots: boolean;
screenshotsLogLevel: LEVEL;
reportSeleniumCommands: boolean;
seleniumCommandsLogLevel: LEVEL;
parseTagsFromTestTitle: boolean;
setRetryTrue: boolean;
sauceLabOptions?: SauceLabOptions;
cucumberNestedSteps: boolean;
autoAttachCucumberFeatureToScenario: boolean;
sanitizeErrorMessages: boolean;
reportPortalClientConfig: {
mode: MODE;
attributes: (typeof Attribute)[];
description: string;
};
}