During playback, the action is not displayed on the screen but is displayed as passed in the logs

The moveOver is not showing on the screen during playback. Although, the logs show the step has passed. Any ideas are appreciated.
Thanks!
Below is the script.

WebUI.openBrowser(‘’)

WebUI.navigateToUrl(‘https://welcome.com’)

WebUI.setText(findTestObject(‘hellouser/input_username’), ‘username’)

WebUI.setText(findTestObject(‘hellouser/input_password’), ‘password’)

WebUI.click(findTestObject(‘hellouser/button_Log In’))

WebUI.click(findTestObject(‘hellouser/a_Grain Condition’))

//WebUI.click(findTestObject(‘hellouser/span_FirstBin’))

//WebUI.getText(findTestObject(‘hellouser/span_FirstBin’))

//Following step is not showing on the screen during play back.

//Also tried with delay but still not showing on the screen.

WebUI.mouseOver(findTestObject(‘hellouser/span_FirstBin’))

WebUI.click(findTestObject(‘hellouser/a_Log out’))

WebUI.closeBrowser()

Hi,

What do you mean in term of “not showing on screen”?

Regards

Hi,
During play back, when watching the screen, one would see the actions performed based on the steps in the script. I don’t see the mouse hover step during such time.

Thanks!