Package com.codeborne.selenide.logevents
Interface LogEvent
-
- All Known Implementing Classes:
SelenideLog
public interface LogEventEvents, created on Selenide actions like "navigate to url", "click on element", "check a condition"
An event contains a string representation of the element, the subject and its status.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classLogEvent.EventStatus
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetDuration()java.lang.StringgetElement()java.lang.ThrowablegetError()LogEvent.EventStatusgetStatus()java.lang.StringgetSubject()
-
-
-
Method Detail
-
getElement
java.lang.String getElement()
-
getSubject
java.lang.String getSubject()
-
getStatus
LogEvent.EventStatus getStatus()
-
getDuration
long getDuration()
-
getError
java.lang.Throwable getError()
-
-