SmolinsCo
SmolinsCo
Let's look at GetBrowserProtocolForChromeVersion: https://github.com/BaristaLabs/chrome-dev-tools-generator/blob/master/src/BaristaLabs.ChromeDevTools.Core/Chrome.cs#L148 It uses following URL: $"https://chromium.googlesource.com/chromium/src/+/{chromeVersion.WebKitVersionHash}/third_party/blink/renderer/core/inspector/browser_protocol.pdl?format=TEXT" I have Chrome 66.0.3359.139. `{chromeVersion.WebKitVersionHash}` is **a020eddf0d85fe84d4a6787b304f50aafb670969** in this case. It is really exist such tree: https://chromium.googlesource.com/chromium/src/+/a020eddf0d85fe84d4a6787b304f50aafb670969/ Also it has...
I using following code: ``` using System; using Newtonsoft.Json; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading; using System.Threading.Tasks; using BaristaLabs.ChromeDevTools.Runtime; using Page = BaristaLabs.ChromeDevTools.Runtime.Page; namespace BaristaChromeDevToolsTest { class Program...