You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we use custom inherited RemoteWebDriver implementation to log calls of execute().
However, php-webdriver provides EventFiringWebDriver, which allows registering custom listeners. This is much cleaner way how to accomplish the logging, it will also provides us the ability to register listener to events of EventFiringWebElement, so we can eg. log text returned from getText() calls.
So the aim is:
Use EventFiringWebDriver and custom listener to provide current logging done by custom RemoteWebDriver
Nice to have: Similarly add logging of output of text received using getText() calls (could be separated to different issue).
The text was updated successfully, but these errors were encountered:
Currently, we use custom inherited RemoteWebDriver implementation to log calls of
execute()
.However, php-webdriver provides EventFiringWebDriver, which allows registering custom listeners. This is much cleaner way how to accomplish the logging, it will also provides us the ability to register listener to events of
EventFiringWebElement
, so we can eg. log text returned fromgetText()
calls.So the aim is:
getText()
calls (could be separated to different issue).The text was updated successfully, but these errors were encountered: