I want to see logcat/ event logs, is this possible?
Hey Tom
If you wish to see logcat or event logs, You could try the below syntax:
driver.manage().logs().get("logcat");
The get("logcat")
method retrieves logs of the “logcat” type. You can replace “logcat” with other log types available for your specific WebDriver implementation.