Guest User

Untitled

a guest
Feb 14th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. private static bool BotDetectionCheck()
  2. {
  3. try
  4. {
  5. IWebElement botcheckDiv = webDriver.FindElement(By.Id("bot_check"));
  6. Console.WriteLine("Hey I found bot detection! heheboi");
  7. return true;
  8. }
  9. catch (NoSuchElementException)
  10. {
  11. return false;
  12. }
  13. }
Add Comment
Please, Sign In to add comment