Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.
Resize Chrome Browser
Comments
-
It depends on which browser you are using. You could add an "Execute JavaScript" action to your scenario after the initial "Navigate" action and use JavaScript like "window.resizeTo()" to change the window size, but most browsers don't actually allow you to do that anymore. It worked for me in Internet Explorer but did not work for me in Chrome.
Here is the code I used in my "Execute JavaScript" action:
function resize() { window.resizeTo(500, 500); }
1 -
Thanks for your reply. Tried your suggestion and it works in IE for me as well.
0