Guest User

Untitled

a guest
May 20th, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. ...
  2. [Test]
  3. public void IE_should_launch_on_correct_url()
  4. {
  5. // do something here that should launch IE
  6. ...
  7. _ie = IE.AttachToIE(Find.ByUrl(someUrl));
  8. ...
  9. Assert.IsNotNull(_ie);
  10. }
  11.  
  12. [TearDown]
  13. public void Tidy()
  14. {
  15. _ie.Close();
  16. }
  17. ...
Add Comment
Please, Sign In to add comment