Should I use SB or Driver for threading? #2901
-
|
So Im building a multi-step bot that needs to login interact with the website and scrape WITH multiple accounts. I use these methods below: sometimes I get detected so I guess IM not doing this stealthy enough, I am not sure if I should only use DRIVER methods or SB as well? Also what is the differences between aint both suppose to be stealthy? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
There are some examples that fully get to a page and don't use Selenium at all to click:
You might be able to learn from those.
Unless a
You'll need to use thread-locking to prevent overlaps with |
Beta Was this translation helpful? Give feedback.
There are some examples that fully get to a page and don't use Selenium at all to click:
You might be able to learn from those.
sb.clickis the same assb.driver.clicksb.uc_clickis the same assb.driver.uc_clickUnless a
drivermethod by the same name already existed with regular Selenium, thesb.driverversion will be the same, althoughsbhas more methods thansb.driver.uc_click()uses JavaScript to do a stealthy click (more stealthy thanjs_click()), however CloudFlare detects JS clicks of any kind now, even if Selenium is not detected, and that's whypyaut…