Write test to confirm key press works for window maximization |
||||
Issue descriptionVerify F4 works to convert to and from max window.
,
Apr 27 2017
Use input_playback.py to emulate keypress for window maximization (F4) and verify window is maximized. See platform_InputBrightness.py and graphics_VTSwitch on how to take screenshots to verify results.
,
Apr 27 2017
We have to define "verify window is maximized". Could be use javascript expression to confirm the browser window size is as expected(max ). Other ideas?
,
Apr 27 2017
Yes, javascript commands would work better.
Maybe something like this?
function resize()
{
return true;
}
window.onresize = resize;
When the window is resized, this will return true. Any other thoughts Kalin?
(See logging_FeedbackReport on how to implement js commands.)
,
May 16 2017
,
Apr 3 2018
|
||||
►
Sign in to add a comment |
||||
Comment 1 by rjahagir@chromium.org
, Apr 14 2017