/// <summary>
 /// This method is used to instantiate all the test resources for the test
 /// </summary>
 /// <returns TestControl></returns>
 public TestControl GetTestResources(String browser)
 {
     InitializeResources(browser, null);
     GlobalTestController.AddTestControl(this);
     return(this);
 }
 /// <summary>
 /// This method is used to instantiate all the test resources for the test
 /// </summary>
 /// <returns TestControl></returns>
 public TestControl GetTestResources()
 {
     InitializeResources(TestConfigurationBuilder.frameworkConfiguration.Browser, null);
     GlobalTestController.AddTestControl(this);
     return(this);
 }
 /// <summary>
 /// This method is used to instantiate all the test resources for the specified browser.
 /// </summary>
 /// <param name="testDataObject"></param>
 /// <param name="browser"></param>
 /// <returns></returns>
 public TestControl GetTestResources(Dictionary <String, String> testDataObject, string browser)
 {
     InitializeResources(browser, testDataObject);
     GlobalTestController.AddTestControl(this);
     return(this);
 }
 /// <summary>
 /// This method is used to instantiate all the test resources for the test
 /// </summary>
 /// <param name="testDataObject"></param>
 /// <returns TestControl></returns>
 public TestControl GetTestResources(Dictionary <String, String> testDataObject)
 {
     InitializeResources(TestConfigurationBuilder.frameworkConfiguration.Browser, testDataObject);
     GlobalTestController.AddTestControl(this);
     return(this);
 }
 public DriverHelper GetTestResources(String browser)
 {
     ResourceInit(browser, null);
     GlobalTestController.AddTestControl(this);
     return(this);
 }