I am writing this script using Selenium but it is taking a lot of time on quora.com ,when I run the same script with required parameter change in facebook or any other website it completes the task normally.
Code :
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
driver = webdriver.Firefox()
driver.get('https://www.quora.com/')
form = driver.find_element_by_class_name('regular_login')
username = form.find_element_by_name('email')
username.send_keys('*******@gmail.com')
password = form.find_element_by_name('password')
password.send_keys('******')
password.send_keys(Keys.RETURN)
driver.close
What could be the possible reason for Selenium to take that much time on quora.com and not in other website.