Is it possible to obtain the logger somehow that Selenium WebDriver uses? I want to capture a transcript of all the commands that were issued (eg: open, wait, click, etc). I
Try
driver.manage().logs()
You will get Logs interface that has methods to get logs and log types. See Logs interface docs