Hello All
Need help
I am trying to launch application with below code but my application always launched in minimized mode
browser =BrowserFactory.launch(BrowserType.CHROME);
browser.navigate(url);
Just to explain further the issue:
1)No existing browser is opened: I am running script from eclipse. script opens new chrome browser but it left minimized in taskbar and blinks . eclipse is still maximized and I have to click the browser to maximize it.. Not as expected
2)If i have existing chrome browser opened and it is minimized: I am running script from eclipse. script opens new chrome browse in maximize mode.. This is fine
2)If i have existing chrome browser opened and it is maximized but hidden behind eclipse: I am running script from eclipse. script opens new chrome browse in minimized mode like scenario 1 and I have to click the browser to maximize it.. Not as expected
I want my application to be launched always in Maximized mode .Please help
Thanks
Devkant