Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. [TestFixtureSetUp]
  2. public void Init()
  3. {
  4. try
  5. {
  6. //driver = new FirefoxDriver();
  7. //FirefoxBinary fb = new FirefoxBinary(@ConfigurationManager.AppSettings["FirefoxBinaryLocation"]);
  8. FirefoxBinary fb = new FirefoxBinary(@ConfigurationManager.AppSettings["FirefoxBinaryLocation"]);
  9. FirefoxProfile fp = new FirefoxProfile();
  10. fp.SetPreference("browser.startup.homepage_override.mstone", "ignore");
  11.  
  12. driver = new FirefoxDriver(fb, fp);
  13. }
  14. catch (System.Exception ex)
  15. {
  16. logger.WriteError("Exception in instantiating Firefox driver : " + ex.Message);
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement