Guest User

Untitled

a guest
Feb 14th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. private static void DailyLoginBonus()
  2. {
  3. try
  4. {
  5. IWebElement dailyLoginBonus = webDriver.FindElement(By.CssSelector("#ds_body > div.popup_box_container"));
  6. if (dailyLoginBonus.Displayed)
  7. {
  8. IWebElement dailyLoginBonus_CloseBtn = webDriver.FindElement(By.CssSelector("#popup_box_daily_bonus > div > a"));
  9. dailyLoginBonus_CloseBtn.Click();
  10. }
  11. }
  12. catch (NoSuchElementException)
  13. {
  14.  
  15. }
  16. }
Add Comment
Please, Sign In to add comment