Completed
Last Updated: 22 Nov 2013 14:11 by ADMIN
ADMIN
Mario
Created on: 12 Feb 2013 18:24
Type: Bug Report
0
Context menu tabs 'move' on playback after Desktop left-click command step.
On playback, a desktop left-click command step on any single button in application specific context menu causes remaining buttons to 'move' temporarily.
Issue seen on playback with IE but not FF.
Issue is the result of a scroll to visible action, can be worked around by converting command step to code and commenting out the 'ScrollToVisible' code line.
1 comment
ADMIN
Pavel
Posted on: 20 Aug 2013 11:26
This is IE specific behavior.  The same result can be achieved with the following javascript:
var span = document.getElementById('tab-1053-btnInnerEl');
span.scrollIntoView(1);

The execution needs to ensure that the element about to be clicked is visible.