'Active tabs one by one in chrome browser
I would like to active these tabs one by one in chrome. How to do it?
System.Diagnostics.Process.Start(new ProcessStartInfo
{
FileName = @"C:\Program Files\Google\Chrome\Application\Chrome.exe",
Arguments = "https://www.test.com/",
UseShellExecute = true
});
System.Diagnostics.Process.Start(new ProcessStartInfo
{
FileName = @"C:\Program Files\Google\Chrome\Application\Chrome.exe",
Arguments = "https://www.test.com/",
UseShellExecute = true
});
Solution 1:[1]
I tried, and generally, it work (opens tab one by one). But right mentioned, you need to use chromedriver and Selenium to manipulate the browser https://www.selenium.dev/documentation/webdriver/getting_started/first_script/
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Eugenia A |
