Diullei / Ghostly

.NET Headless Browser written in C#
MIT License
2 stars 0 forks source link

Unable to visit a web page other than diullei.github.com #2

Open kgantchev opened 12 years ago

kgantchev commented 12 years ago

I tired to visit google.com, but I waited over 10 minutes and the call never completes:

Browser browser = new Browser(); string bodyHTML = "";

browser.Visit("http://www.google.com/", () => { bodyHTML = browser.Run("document.documentElement.innerHTML"); });

Diullei commented 12 years ago

@kgantchev yes, this problem occurs whenever we try to load pages that are on https protocol like google.com. If you try to access a page with http protocol will work fine. I need to resolve this problem.

Thanks for the issue.