Actually from the picture everything is clear. Help guys to open several browsers at the touch of a button. For manipulations I use library Selenium. Here, for example, the opening code 1 browser.
private void button1_Click(object sender, EventArgs e) { IWebDriver Browser = new ChromeDriver(); Browser.Manage().Window.Maximize(); }
This way you can open 2:
private void button1_Click(object sender, EventArgs e) { IWebDriver Browser = new ChromeDriver(); Browser.Manage().Window.Maximize(); IWebDriver Browser2 = new ChromeDriver(); Browser2.Manage().Window.Maximize(); }
It is necessary either through the array or through the cycle or else add the number of openings, but nothing comes to mind.