Example #1
0
 private static void Main(string[] args)
 {
     string apiKey = "";
     BrowseraConnector connector = new BrowseraConnector(apiKey);
     IEnumerable<WebsiteTestConfiguration> result2 = connector.ListWebSites();
     IEnumerable<TestRun> runs = connector.ListTestRuns(29350);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="BrowseraTestExecutor"/> class.
 /// </summary>
 /// <param name="apiKey">The API key.</param>
 public BrowseraTestExecutor(string apiKey)
 {
     this.apiKey = apiKey;
     this.connector = new BrowseraConnector(apiKey);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="TestRunResultPoller"/> class.
 /// </summary>
 /// <param name="apiKey">The API key.</param>
 public TestRunResultPoller(string apiKey)
 {
     this.connector = new BrowseraConnector(apiKey);
 }