Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.frameworkium</groupId>
<artifactId>Frameworkium-core</artifactId>
<version>1.1.6</version>
<version>1.1.7</version>

<name>Frameworkium-core</name>
<description>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/frameworkium/tests/internal/BaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,11 @@ public static ScreenshotCapture getCapture() {
return capture.get();
}

public static void startStep(String stepName){
public static void __startStep(String stepName){
Allure.LIFECYCLE.fire(new StepStartedEvent(stepName));
}

public static void finishStep(){
public static void __finishStep(){
Allure.LIFECYCLE.fire(new StepFinishedEvent());
}
}