This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
import selenium | |
from selenium.webdriver.chrome.options import Options | |
chrome_options = Options() | |
# For using sleep function because selenium | |
# works only when the all the elements of the | |
# page is loaded. | |
import time |