remotewebdriver - how to get logs from node

746 Views Asked by At

I am running tests using the selenium grid and remote web driver (Using testNG). The nodes run on VMWare.

How can I get during the run the log that appear on the node ? I create new driver per class so I want the log to be saved for each class.

How it can be done ?

I want also to record in video the run in the vmware. Is it possible to record the vmware when the screen is not open?

Thanks

1

There are 1 best solutions below

1
On

This might be a partial answer of your question. We have done some extensive research on how to handle selenium log. So far came out that Log4j is one of the best options to use. Its allows you to log your result in different levels. Such as 'Fatal','Debug','Info' etc and different targets such as 'database, txt and console'. With a simple try catch wrapper you can simply log every bit of of information you may want from each test.