In this course, you will be learning how to Automate any webpage using Selenium in python. We will be making a Tool for Automating the Codechef problem and we will also be working on LinkedIn Automation.This course is for anyone who wants to build some good projects in Selenium and Python, right from scratch.At the end of the course, we will be sharing the complete code with the implementation video for reference.
Facilities
Location
Start date
Online
Start date
Different dates availableEnrolment now open
About this course
Automated Bot to automate web pages on web, using just simple steps
Questions & Answers
Add your question
Our advisors and other users will be able to reply to you
We are verifying your question adjusts to our publishing rules. According to your answers, we noticed you might not be elegible to enroll into this course, possibly because of: qualification requirements, location or others. It is important you consult this with the Centre.
Thank you!
We are reviewing your question. We will publish it shortly.
Or do you prefer the center to contact you?
Reviews
Have you taken this course? Share your opinion
This centre's achievements
2021
All courses are up to date
The average rating is higher than 3.7
More than 50 reviews in the last 12 months
This centre has featured on Emagister for 6 years
Subjects
Install
Import
Writing
Project
Installation
HTML
Course programme
Introduction to the Project
1 lecture00:44Getting started with the Project
Introduction to the Project
1 lecture00:44Getting started with the ProjectGetting started with the ProjectGetting started with the ProjectGetting started with the ProjectGetting started with the Project
Installing web drivers
1 lecture00:45WebDrivers Installation steps First install selenium using - "!pip install selenium" in consoleThen install webdriver, by clicking - python.readthedocs.io/installation.html#drivers
Installing web drivers
1 lecture00:45WebDrivers Installation steps First install selenium using - "!pip install selenium" in consoleThen install webdriver, by clicking - python.readthedocs.io/installation.html#driversWebDrivers Installation steps First install selenium using - "!pip install selenium" in consoleThen install webdriver, by clicking - python.readthedocs.io/installation.html#driversWebDrivers Installation steps First install selenium using - "!pip install selenium" in consoleThen install webdriver, by clicking - python.readthedocs.io/installation.html#driversWebDrivers Installation steps First install selenium using - "!pip install selenium" in consoleThen install webdriver, by clicking - python.readthedocs.io/installation.html#driversWebDrivers Installation steps First install selenium using - "!pip install selenium" in consoleThen install webdriver, by clicking - python.readthedocs.io/installation.html#driversFirst install selenium using - "!pip install selenium" in consoleThen install webdriver, by clicking - python.readthedocs.io/installation.html#driversFirst install selenium using - "!pip install selenium" in consoleThen install webdriver, by clicking - python.readthedocs.io/installation.html#drivers
Creating Solution File
1 lecture00:33File having code to be uploaded Convert the Solution.txt file to Solution.cpp file after downloading it.
Creating Solution File
1 lecture00:33File having code to be uploaded Convert the Solution.txt file to Solution.cpp file after downloading it.
File having code to be uploaded Convert the Solution.txt file to Solution.cpp file after downloading it.
File having code to be uploaded Convert the Solution.txt file to Solution.cpp file after downloading it.
File having code to be uploaded Convert the Solution.txt file to Solution.cpp file after downloading it.
File having code to be uploaded Convert the Solution.txt file to Solution.cpp file after downloading it.
Convert the Solution.txt file to Solution.cpp file after downloading it.
Convert the Solution.txt file to Solution.cpp file after downloading it.
Automating the Login Process
2 lectures13:18Filling the Login credentials using python codeSubmit the login credentials
Automating the Login Process
2 lectures13:18Filling the Login credentials using python codeSubmit the login credentialsFilling the Login credentials using python codeFilling the Login credentials using python codeFilling the Login credentials using python codeFilling the Login credentials using python codeSubmit the login credentialsSubmit the login credentialsSubmit the login credentialsSubmit the login credentials
Code Submission
1 lecture08:31Selecting the Code Area and Submitting it
Code Submission
1 lecture08:31Selecting the Code Area and Submitting itSelecting the Code Area and Submitting itSelecting the Code Area and Submitting itSelecting the Code Area and Submitting itSelecting the Code Area and Submitting it
Complete Code and Solution.cpp File
1 lecture00:00Complete Code of the Program and Solution File #first install selenium using - "!pip install selenium" in console#then install webdriver, by clicking - to submit code of problem- window
import timefrom selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManagerbrowser=webdriver.Chrome(ChromeDriverManager().install())#opening a url
browser.get(" username and password
username_element=browser.find_element_by_id("edit-name")
username_element.send_keys("Your_ID")password_element=browser.find_element_by_id("edit-pass")
password_element.send_keys("Your_Password")#from getpass import getpass
#password_element.send_keys(getpass("enter your password"))
#clicking login button
time.sleep(4)
browser.find_element_by_id("edit-submit").click()#move to problem page
browser.get(" file
with open("Solution.cpp",'r') as f:
code=f.read()
#writing the code in text area
code_element=browser.find_element_by_id("edit-program")
code_element.send_keys(code)
#submit code
time.sleep(8)
browser.find_element_by_id("edit-submit-1").click()
Complete Code and Solution.cpp File.
1 lecture00:00Complete Code of the Program and Solution File #first install selenium using - "!pip install selenium" in console#then install webdriver, by clicking - to submit code of problem- window
import timefrom selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManagerbrowser=webdriver.Chrome(ChromeDriverManager().install())#opening a url
browser.get(" username and password
username_element=browser.find_element_by_id("edit-name")
username_element.send_keys("Your_ID")password_element=browser.find_element_by_id("edit-pass")
password_element.send_keys("Your_Password")#from getpass import getpass
#password_element.send_keys(getpass("enter your password"))
#clicking login button
time.sleep(4)
browser.find_element_by_id("edit-submit").click()#move to problem page
browser.get(" file
with open("Solution.cpp",'r') as f:
code=f.read()
#writing the code in text area
code_element=browser.find_element_by_id("edit-program")
code_element.send_keys(code)
#submit code
time.sleep(8)
browser.find_element_by_id("edit-submit-1").click()Complete Code of the Program and Solution File #first install selenium using - "!pip install selenium" in console#then install webdriver, by clicking - to submit code of problem- window
import timefrom selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManagerbrowser=webdriver.Chrome(ChromeDriverManager().install())#opening a url
browser.get(" username and password
username_element=browser.find_element_by_id("edit-name")
username_element.send_keys("Your_ID")password_element=browser.find_element_by_id("edit-pass")
password_element.send_keys("Your_Password")#from getpass import getpass
#password_element.send_keys(getpass("enter your password"))
#clicking login button
time.sleep(4)
browser.find_element_by_id("edit-submit").click()#move to problem page
browser.get(" file
with open("Solution.cpp",'r') as f:
code=f.read()
#writing the code in text area
code_element=browser.find_element_by_id("edit-program")
code_element.send_keys(code)
#submit code
time.sleep(8)
browser.find_element_by_id("edit-submit-1").click()Complete Code of the Program and Solution File #first install selenium using - "!pip install selenium" in console#then install webdriver, by clicking - to submit code of problem- window
import timefrom selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManagerbrowser=webdriver.Chrome(ChromeDriverManager().install())#opening a url
browser.get(" username and password
username_element=browser.find_element_by_id("edit-name")
username_element.send_keys("Your_ID")password_element=browser.find_element_by_id("edit-pass")
password_element.send_keys("Your_Password")#from getpass import getpass
#password_element.send_keys(getpass("enter your password"))
#clicking login button
time.sleep(4)
browser.find_element_by_id("edit-submit").click()#move to problem page
browser.get(" file
with open("Solution.cpp",'r') as f:
code=f.read()
#writing the code in text area
code_element=browser.find_element_by_id("edit-program")
code_element.send_keys(code)
#submit code
time.sleep(8)
browser.find_element_by_id("edit-submit-1").click()Complete Code of the Program and Solution File #first install selenium using - "!pip install selenium" in console#then install webdriver, by clicking - to submit code of problem- window
import timefrom selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManagerbrowser=webdriver.Chrome(ChromeDriverManager().install())#opening a url
browser.get(" username and password
username_element=browser.find_element_by_id("edit-name")
username_element.send_keys("Your_ID")password_element=browser.find_element_by_id("edit-pass")
password_element.send_keys("Your_Password")#from getpass import getpass
#password_element.send_keys(getpass("enter your password"))
#clicking login button
time.sleep(4)
browser.find_element_by_id("edit-submit").click()#move to problem page
browser.get(" file
with open("Solution.cpp",'r') as f:
code=f.read()
#writing the code in text area
code_element=browser.find_element_by_id("edit-program")
code_element.send_keys(code)
#submit code
time.sleep(8)
browser.find_element_by_id("edit-submit-1").click()Complete Code of the Program and Solution File #first install selenium using - "!pip install selenium" in console#then install webdriver, by clicking - to submit code of problem- window
import timefrom selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManagerbrowser=webdriver.Chrome(ChromeDriverManager().install())#opening a url
browser.get(" username and password
username_element=browser.find_element_by_id("edit-name")
username_element.send_keys("Your_ID")password_element=browser.find_element_by_id("edit-pass")
password_element.send_keys("Your_Password")#from getpass import getpass
#password_element.send_keys(getpass("enter your password"))
#clicking login button
time.sleep(4)
browser.find_element_by_id("edit-submit").click()#move to problem page
browser.get(" file
with open("Solution.cpp",'r') as f:
code=f.read()
#writing the code in text area
code_element=browser.find_element_by_id("edit-program")
code_element.send_keys(code)
#submit code
time.sleep(8)
browser.find_element_by_id("edit-submit-1").click()#first install selenium using - "!pip install selenium" in console#then install webdriver, by clicking - to submit code of problem- window
import timefrom selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManagerbrowser=webdriver.Chrome(ChromeDriverManager().install())#opening a url
browser.get(" username and password
username_element=browser.find_element_by_id("edit-name")
username_element.send_keys("Your_ID")password_element=browser.find_element_by_id("edit-pass")
password_element.send_keys("Your_Password")#from getpass import getpass
#password_element.send_keys(getpass("enter your password"))
#clicking login button
time.sleep(4)
browser.find_element_by_id("edit-submit").click()#move to problem page
browser.get(" file
with open("Solution.cpp",'r') as f:
code=f.read()
#writing the code in text area
code_element=browser.find_element_by_id("edit-program")
code_element.send_keys(code)
#submit code
time.sleep(8)
browser.find_element_by_id("edit-submit-1").click()#first install selenium using - "!pip install selenium" in console#then install webdriver, by clicking - to submit code of problem- window
import timefrom selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManagerbrowser=webdriver.Chrome(ChromeDriverManager().install())#opening a url
browser.get(" username and password
username_element=browser.find_element_by_id("edit-name")
username_element