From c30226029b580d90253585b22403633b0a7dbcad Mon Sep 17 00:00:00 2001
From: brewdente <brewdente@gmail.com>
Date: Mon, 27 Apr 2015 10:22:06 -0400
Subject: [PATCH] Actually hitting a page in the example to show that it works.

---
 AutoWebPerf/Program.cs | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/AutoWebPerf/Program.cs b/AutoWebPerf/Program.cs
index cb06ee9..a7f2d25 100644
--- a/AutoWebPerf/Program.cs
+++ b/AutoWebPerf/Program.cs
@@ -9,6 +9,7 @@ using System.Threading;
 using System.Threading.Tasks;
 using ChromeDevTools.Protocol;
 using WebSocket4Net;
+using ChromeDevTools.Protocol.Page;
 
 namespace AutoWebPerf
 {
@@ -31,6 +32,10 @@ namespace AutoWebPerf
                     {
                         Console.WriteLine("Response Received");
                     });
+                chromeSession.SendAsync(new NavigateCommand
+                    {
+                        Url = "http://www.google.com"
+                    });
 
                 Console.ReadLine();
             }
-- 
GitLab