I want to create a script to automate the sending of Facebook comments. Logging in and fetching the post are done, but I cannot understand why selenium doesn't find the comment class.
Here's the code:
def fb_login():
    browser.get("https://www.facebook.com")
    time.sleep(5)
    email = browser.find_element_by_id("email")
    email.send_keys(fb_email)
    pwd = browser.find_element_by_id("pass")
    pwd.send_keys(fb_pass)
    login = browser.find_element_by_id("loginbutton")
    login.click()
    time.sleep(5)
def fb_page():
    browser.get(fb_post)
def fb_comment():
    browser.find_element_by_class_name("._5rpu")
    textbox.send_keys(fb_message)
    textbox.send_keys(Keys.ENTER)
    textbox.clear()
browser = webdriver.Firefox()
fb_login()
fb_page()
fb_comment()
Here's the exception:
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate element: ._5rpu
 
    