Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. public partial class BingMainPage
  2. {
  3. public IWebElement SearchBox
  4. {
  5. get
  6. {
  7. return this.driver.FindElement(By.Id("sb_form_q"));
  8. }
  9. }
  10.  
  11. public IWebElement GoButton
  12. {
  13. get
  14. {
  15. return this.driver.FindElement(By.Id("sb_form_go"));
  16. }
  17. }
  18.  
  19. public IWebElement ResultsCountDiv
  20. {
  21. get
  22. {
  23. return this.driver.FindElement(By.Id("b_tween"));
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement