Package com.codeborne.selenide.logevents
Interface LogEvent
-
- All Known Implementing Classes:
SelenideLog
public interface LogEvent
Events, 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 class
LogEvent.EventStatus
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getDuration()
java.lang.String
getElement()
java.lang.Throwable
getError()
LogEvent.EventStatus
getStatus()
java.lang.String
getSubject()
-
-
-
Method Detail
-
getElement
java.lang.String getElement()
-
getSubject
java.lang.String getSubject()
-
getStatus
LogEvent.EventStatus getStatus()
-
getDuration
long getDuration()
-
getError
java.lang.Throwable getError()
-
-