I am currently using webdriver to run tests on my website. The website is currently being run using IIS manager, so my tests run against the path: localhost/path/to/my/website.
The issue with this is if I want to have my tests run against the latest version of my website, I need to do a full build and redeploy of the site, which can take a long time. I was wondering if there was a way I could run webdriver against visual studio's emulator instead. The path to that usually ends up being localhost:(some port number)/(some URL), but I still need a way to start the emulator and run against the right port number.
To clarify, I'm running the tests from VS just fine. What I want to do is run the tests against VS's emulator. So I need a way to start the emulator before running the tests.
I was also able to find out that the website always runs with the host/port: http://localhost:62880/ So how all I need to know is how to start the emulator from WebDriver.