Reputation: 1126
I have been using Selenium along side C# in Visual Studio 2013. I will make a call to:
driver.Navigate().GoToUrl("http://<insert webpage>");
...Which will open whichever WebDriver I choose to use. From here, I will make calls to links/text boxes/menus as I need to. However, I was wondering if there is a way to get the information from webpages without having to actually open a browser, and if so, could someone perhaps explain or link me to the right direction? It would save time and speed up a lot of my programs. I know applications can get information remotely without actually opening a browser, I just do not know how the process works or if Selenium alone will give that ability.
I appologize if this is wrong place to ask this question.
Upvotes: 2
Views: 4555
Reputation: 10576
It is not clear whether or not you need to work with web page (like click on the links, or edit test), but here are two options:
Upvotes: 4