I'm working on integration test for C# library. One of the steps in my .NET code being tested is to open Firefox with proper url address. My integration test should provide some data to my library, wait for firefox to be launched and check if the web page contains proper data. To use selenium I have to attach somehow to firefox being lunched by my library. Is it possible with Selenium? Are there any other libraries which could help me?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This is a pretty old feature request: Allow webdriver to attach to a running browser . So it's not possible right now. |
|||
|
|
|
This is simple to accomplish with WatiN. Documentation that explains attaching to an existing browser is here. The gist of what you'd need to do though in your test to attach to the browser opened up by your library is basically:
|
|||||||||
|