I am writing a program to run videos listed on my site for testing purpose and here what I need is to run videos in different tabs of the same browser window.
I hav
Here is a simple solution for open a new tab in seleneium c#:
driver.Url = "http://www.gmail.net"; IJavaScriptExecutor js = (IJavaScriptExecutor)driver; js.ExecuteScript("window.open();");