driver.find_element_by_xpath('/html/body/div[2]/div[5]/div/div/div/div[2]/div/section/div[2]/form/fieldset[1]/div/div[3]/div[2]/div/div[1]/div[2]').click()
text_area = driver.find_element_by_css_selector('.CodeMirror textarea')
text_area.send_keys(text)
def get_name_student(id_studs):
name = []
conn = get_connection()
c = conn.cursor()
c.execute("SELECT first_name FROM reg_studs WHERE id_studs=?", (id_studs,))
for item in c.fetchall():
for it in item:
name.append(it)
conn.commit()
return name[0]