I have a test in webdriver that open multiple chrome browser at same time but when it opens it overlap with each other. But I would like to open them without overlapping each other in same monitor. Is this possible, cannot find anything specific?
Let me know if there is any method for in webdriver to perform this action.
Thank you
Whilst WebDriver does not have a specific convenience method to do what you are asking for, you can approach the issue programmatically by determining the height/width of your monitor and setting the size and position of your windows accordingly.
Below is an example of how you could implement this to display two windows side by side using Selenium libraries: