Python Selenium: Can selenium driver be identified via javascript?
up vote
0
down vote
favorite
This is the site that I want to login into: https://nid.naver.com/nidlogin.login
When I tried to log in this site using selenium
webdriver, it showed CAPTCHA.
But when I type id/pw by myself, keyboard typing, the CAPTCHA didn't show up!
How can selenium driver be detected?
python selenium
add a comment |
up vote
0
down vote
favorite
This is the site that I want to login into: https://nid.naver.com/nidlogin.login
When I tried to log in this site using selenium
webdriver, it showed CAPTCHA.
But when I type id/pw by myself, keyboard typing, the CAPTCHA didn't show up!
How can selenium driver be detected?
python selenium
It cannot be detected, but your human actions can be detected. If there is no human actions(Type one by one instead of flush in, mouse move or something else), then whatever it is, it is at least not human.
– Sraw
Nov 9 at 4:34
it showing CAPTCHA maybe because you have several login failed
– ewwink
Nov 9 at 8:20
@Sraw it can indeed be detected
– Corey Goldberg
Nov 9 at 16:19
@CoreyGoldberg Really? Learnt, thank you.
– Sraw
Nov 9 at 16:41
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
This is the site that I want to login into: https://nid.naver.com/nidlogin.login
When I tried to log in this site using selenium
webdriver, it showed CAPTCHA.
But when I type id/pw by myself, keyboard typing, the CAPTCHA didn't show up!
How can selenium driver be detected?
python selenium
This is the site that I want to login into: https://nid.naver.com/nidlogin.login
When I tried to log in this site using selenium
webdriver, it showed CAPTCHA.
But when I type id/pw by myself, keyboard typing, the CAPTCHA didn't show up!
How can selenium driver be detected?
python selenium
python selenium
asked Nov 9 at 4:25
user3595632
1,42231234
1,42231234
It cannot be detected, but your human actions can be detected. If there is no human actions(Type one by one instead of flush in, mouse move or something else), then whatever it is, it is at least not human.
– Sraw
Nov 9 at 4:34
it showing CAPTCHA maybe because you have several login failed
– ewwink
Nov 9 at 8:20
@Sraw it can indeed be detected
– Corey Goldberg
Nov 9 at 16:19
@CoreyGoldberg Really? Learnt, thank you.
– Sraw
Nov 9 at 16:41
add a comment |
It cannot be detected, but your human actions can be detected. If there is no human actions(Type one by one instead of flush in, mouse move or something else), then whatever it is, it is at least not human.
– Sraw
Nov 9 at 4:34
it showing CAPTCHA maybe because you have several login failed
– ewwink
Nov 9 at 8:20
@Sraw it can indeed be detected
– Corey Goldberg
Nov 9 at 16:19
@CoreyGoldberg Really? Learnt, thank you.
– Sraw
Nov 9 at 16:41
It cannot be detected, but your human actions can be detected. If there is no human actions(Type one by one instead of flush in, mouse move or something else), then whatever it is, it is at least not human.
– Sraw
Nov 9 at 4:34
It cannot be detected, but your human actions can be detected. If there is no human actions(Type one by one instead of flush in, mouse move or something else), then whatever it is, it is at least not human.
– Sraw
Nov 9 at 4:34
it showing CAPTCHA maybe because you have several login failed
– ewwink
Nov 9 at 8:20
it showing CAPTCHA maybe because you have several login failed
– ewwink
Nov 9 at 8:20
@Sraw it can indeed be detected
– Corey Goldberg
Nov 9 at 16:19
@Sraw it can indeed be detected
– Corey Goldberg
Nov 9 at 16:19
@CoreyGoldberg Really? Learnt, thank you.
– Sraw
Nov 9 at 16:41
@CoreyGoldberg Really? Learnt, thank you.
– Sraw
Nov 9 at 16:41
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
It depends on your driver. Chromedriver does set specific js variables when it starts the browser. I'm sure other driver vendors have something similar. So, in short, yes. There are different ways it can determine that you are running via webdriver.
But when I log in by myself manually (without usingpython
code) via selenium webdriver, It works. So I think that It's not matter of driver itself... I think there are some human checking scripts on that site... Still can't find it
– user3595632
Nov 10 at 21:08
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
It depends on your driver. Chromedriver does set specific js variables when it starts the browser. I'm sure other driver vendors have something similar. So, in short, yes. There are different ways it can determine that you are running via webdriver.
But when I log in by myself manually (without usingpython
code) via selenium webdriver, It works. So I think that It's not matter of driver itself... I think there are some human checking scripts on that site... Still can't find it
– user3595632
Nov 10 at 21:08
add a comment |
up vote
0
down vote
It depends on your driver. Chromedriver does set specific js variables when it starts the browser. I'm sure other driver vendors have something similar. So, in short, yes. There are different ways it can determine that you are running via webdriver.
But when I log in by myself manually (without usingpython
code) via selenium webdriver, It works. So I think that It's not matter of driver itself... I think there are some human checking scripts on that site... Still can't find it
– user3595632
Nov 10 at 21:08
add a comment |
up vote
0
down vote
up vote
0
down vote
It depends on your driver. Chromedriver does set specific js variables when it starts the browser. I'm sure other driver vendors have something similar. So, in short, yes. There are different ways it can determine that you are running via webdriver.
It depends on your driver. Chromedriver does set specific js variables when it starts the browser. I'm sure other driver vendors have something similar. So, in short, yes. There are different ways it can determine that you are running via webdriver.
answered Nov 9 at 13:45
Lucas Tierney
1,54788
1,54788
But when I log in by myself manually (without usingpython
code) via selenium webdriver, It works. So I think that It's not matter of driver itself... I think there are some human checking scripts on that site... Still can't find it
– user3595632
Nov 10 at 21:08
add a comment |
But when I log in by myself manually (without usingpython
code) via selenium webdriver, It works. So I think that It's not matter of driver itself... I think there are some human checking scripts on that site... Still can't find it
– user3595632
Nov 10 at 21:08
But when I log in by myself manually (without using
python
code) via selenium webdriver, It works. So I think that It's not matter of driver itself... I think there are some human checking scripts on that site... Still can't find it– user3595632
Nov 10 at 21:08
But when I log in by myself manually (without using
python
code) via selenium webdriver, It works. So I think that It's not matter of driver itself... I think there are some human checking scripts on that site... Still can't find it– user3595632
Nov 10 at 21:08
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53219865%2fpython-selenium-can-selenium-driver-be-identified-via-javascript%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
It cannot be detected, but your human actions can be detected. If there is no human actions(Type one by one instead of flush in, mouse move or something else), then whatever it is, it is at least not human.
– Sraw
Nov 9 at 4:34
it showing CAPTCHA maybe because you have several login failed
– ewwink
Nov 9 at 8:20
@Sraw it can indeed be detected
– Corey Goldberg
Nov 9 at 16:19
@CoreyGoldberg Really? Learnt, thank you.
– Sraw
Nov 9 at 16:41