Tag: 魅力

Allure在本地机器上生成空的报告页面

正如标题所说,我不能强迫Allure 2在本地机器上为我生成报告。 我尝试了很多谷歌的东西,但没有任何帮助。 我使用Kotlin + Selenide + TestNG编写测试,如果它帮助某种方式:)我有点混淆testNG ,因为它有testNG版本和Gradle版本 – 哪一个应该使用? 都? 这是我的build.gradle文件: group 'RegisteredUserFlow' version '1.0-SNAPSHOT' buildscript { ext.kotlin_version = "1.1.2-2" repositories { jcenter() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "ru.d10xa:gradle-allure-plugin:0.5.5" } } apply plugin: 'kotlin' apply plugin: 'java' apply plugin: 'ru.d10xa.allure' sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 allure { aspectjweaver = true testNG […]