diff --git a/README_TEMPLATE.md b/README_TEMPLATE.md index 4e30f65..a3e0fb3 100644 --- a/README_TEMPLATE.md +++ b/README_TEMPLATE.md @@ -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