Skip to content

Commit

Permalink
README_TEMPLATE.md update
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Jun 8, 2022
1 parent c065d53 commit 40a0a61
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,19 @@ dependencies {
```

### Selenide configuration

To start getting Selenide step logging in Report Portal you need to add the logger to `SelenideLogger` listeners. The best
place for it is one which will be initialized at the earliest moment once during the test execution. E.G. a static initialization block in a
base class for all tests:

```java
public class BaseTest {
static {
SelenideLogger.addListener("ReportPortal logger", new ReportPortalSelenideEventListener());
}
}
```

### Logger configuration

TBD

0 comments on commit 40a0a61

Please sign in to comment.