diff --git a/AutoWebPerf/Program.cs b/AutoWebPerf/Program.cs
index cb06ee9ae03fcf3de25bc925f9ad2d70992a0282..a7f2d25114f9925bf0d3cf2160cd9d5ca2124ab3 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();
             }