public void CloseTestCase() { AndroidDriver <IWebElement> driver = new AndroidDriver <IWebElement>(defaultUri, capabilities); server.respondTo("DELETE", "/window", null); driver.Close(); }
public void PerfectoCloseConnection() { // Retrieve the URL of the Single Test Report, can be saved to your execution summary and used to download the report at a later point string reportUrl = (string)(driver.Capabilities.GetCapability(WindTunnelUtils.SINGLE_TEST_REPORT_URL_CAPABILITY)); driver.Close(); driver.Quit(); // retrieve the STR URL String reportLoc = reportClient.getReportUrl(); Trace.WriteLine("Find your execution report at: " + reportLoc); }
public void PerfectoCloseConnection() { driver.Close(); // In case you want to download the report or the report attachments, do it here. try { driver.DownloadReport(DownloadReportTypes.pdf, "C:\\testCS\\report_ListKeeper"); // driver.DownloadAttachment(DownloadAttachmentTypes.video, "C:\\test\\report\\video", "flv"); // driver.DownloadAttachment(DownloadAttachmentTypes.image, "C:\\test\\report\\images", "jpg"); } catch (Exception ex) { Trace.WriteLine(string.Format("Error getting test logs: {0}", ex.Message)); } driver.Quit(); }
public void PerfectoCloseConnection() { // Retrieve the URL of the Single Test Report, can be saved to your execution summary and used to download the report at a later point string reportUrl = (string)(driver.Capabilities.GetCapability(WindTunnelUtils.SINGLE_TEST_REPORT_URL_CAPABILITY)); driver.Close(); // In case you want to download the report or the report attachments, do it here. //try //{ // driver.DownloadReport(DownloadReportTypes.pdf, "C:\\test\\report"); // driver.DownloadAttachment(DownloadAttachmentTypes.video, "C:\\test\\report\\video", "flv"); // driver.DownloadAttachment(DownloadAttachmentTypes.image, "C:\\test\\report\\images", "jpg"); //} //catch (Exception ex) //{ // Trace.WriteLine(string.Format("Error getting test logs: {0}", ex.Message)); //} driver.Quit(); }
public void PerfectoCloseConnection() { driver.Close(); driver.Quit(); }
public void CloseTests() { driver.Close(); }