I am working on Selenium Webdriver C# using Visual Studio Express 2012.
I installed the latest safari browser and I create the developer certificate for extension from Apple and I built the extension and install it.
But even after that, I am not able to send the URL to the browser. The browser is launched successfully, but after that I didn't get any logs.
The error message is:
Additional information: Did not receive a connection from the Safari extension. Please verify that it is properly installed and is the proper version.
The code that I use :
IWebDriver driver = new SafariDriver();
driver.Navigate().GoToUrl("http://www.google.com");
The safari can not connect to the server. Please help me, thanks.