Is there any difference between manualluy login and selenium-python?

Question:

There are two method.

First, launch chrome debugging mode by using os.system() module and manually login, then connect selenium to get page source.

Second, launch and login are also controlled by selenium, Then get page source.

Because too difficult to login webpage(2 session needed), i didn’t try second method.

So, i just want to know, Is there any difference between manualluy login and selenium-python?

Asked By: rut

||

Answers:

There may be a difference between manually logging in to a website and using Selenium to login to the same website. This difference may be due to a number of factors, such as the way in which the website authenticates users, the specific actions that are performed during the login process, and the way in which the website responds to different types of input.

One potential difference between manual and automated login is that manual login may allow a user to enter their credentials in a more flexible way, such as using a keyboard, mouse, or other input device, whereas automated login may be more limited in terms of the input methods that are supported. Additionally, manual login may allow a user to view and interact with the website in a way that is not possible with automated login, such as clicking on buttons or links, or interacting with other elements on the page.

Another potential difference is that manual login may be subject to human error, such as mistyping a password or entering the wrong username, whereas automated login using Selenium can be more consistent and reliable. However, automated login may also be subject to errors, such as incorrect configuration of the Selenium script or errors in the website’s authentication system.

Overall, the differences between manual and automated login will depend on the specific website and the way in which it is designed and implemented. It is therefore important to carefully evaluate the specific requirements and constraints of the login process in order to determine the best approach for logging in to the website.

Answered By: user7347835
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.