the system under test support ie browser. can selenium+ie hide browser window?
you can hide window hotkeys alt-space-n java robot
robot robot = new robot(); robot.keypress(keyevent.vk_alt); robot.keypress(keyevent.vk_space); robot.keyrelease(keyevent.vk_space); robot.keyrelease(keyevent.vk_alt); thread.sleep(50); robot.keypress(keyevent.vk_n); robot.keyrelease(keyevent.vk_n);
also 1 of possible solutions - autoit
Comments
Post a Comment