Skip to main content

Posts

Showing posts from February, 2019

Automate Login with Selenium Webdriver Using Python3 [2019]

Automate Login with Selenium Webdriver Using Python3 2019 Wanna do all those crazy automation stuffs you have always dream of? Start my doing this : Requirements : Selenium WebDriver (Link is given below) Python3 Any Text Editor Let's start with the selenium web driver, what is it? I won't bore Y'all with the technical stuff, just keep in mind that this is like a driver that has the ability to automate everything on the web.  You can download it via this link- https://www.seleniumhq.org/download/ [Choose python] Or you can download the unofficial chromedriver file via this: https://sites.google.com/a/chromium.org/chromedriver/downloads How do you choose the correct version? Goto- chrome://settings/help check your chrome version Now that you have done the basic setup let's get started.  Keep the ChromeDriver file in the same folder you'll be creating your program.  Before you code or copy-paste this code, please understand t...