Skip to content Skip to sidebar Skip to footer

How To Record Selenium Webdriver Test Executions In Python On Window X64

Using python binding selenium3 webdriver for test automation, to record execution steps using castro but it is failing on Windows 7 x64. Is there any other library or module which

Solution 1:

The reason is you have not enabled vnc loop back connection.

Solution 2:

Selenium provides us with the feature to run the automation code/suite and record the output as a video and save it on your system. This video can then be shared with anyone who can see what the automation is doing. First of all, to enable video recording, we need to download some important jars. They are freely available to download from Google. Below are the jars to be downloaded. These are the latest version available, any other version can also be downloaded:

ATUReporter_Selenium_testNG_5.1.1 ATUTestRecorder_2.1

You can find the complete code in below link: https://mytechdevice.com/how-to-record-video-of-automation-output-in-selenium/

Post a Comment for "How To Record Selenium Webdriver Test Executions In Python On Window X64"