allure-android
allure-android copied to clipboard
Android library for generating instrumentation reports in Allure format
An allure report will not be generated in case of application crash while executing test. You can wrap tests from allure-espresso module (CrashTest and RXCrashTest) with step() method to reproduce...
As per request in: https://github.com/allure-framework/allure-android/issues/40 Adding FailshotRule option to define screenshots size/quality. Changes summary: - Default behavior for FailshotRule() stays same. - If maxWidth is defined, screenshot will be resized...
I need to have availability to easily create custom labels/links and use AllureId annotation to integrate with Allure Enterprise. It implemented in allure-java by LabelAnnotation and LinkAnnotation. This kind of...
Скриншоты в отчета аллюра визуально занимают много места. Было бы неплохо, чтобы для метода deviceScreenshot("screenshot_name") и FailshotRule была возможность указывать максимальный размер скриншота в пикселах (например, по длинной стороне). В...
Hi! If project has multidex on API 19 or below we must call the following code before starting: `MultiDex.installInstrumentation(InstrumentationRegistry.getContext(), InstrumentationRegistry.getTargetContext());` otherwise it will fall with `java.lang.NoClassDeffoundError: kotlin.jvm.internal.intrinsics`. But we can...