-
Notifications
You must be signed in to change notification settings - Fork 0
/
selen_edu_7.py
29 lines (27 loc) · 1.15 KB
/
selen_edu_7.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from selenium import webdriver
import time
import os
try:
#открываем страницу
link = "http://suninjuly.github.io/file_input.html"
browser = webdriver.Chrome()
browser.get(link)
#заполняем поля
input1 = browser.find_element_by_css_selector("input[name=firstname]")
input1.send_keys("Ivan")
input2 = browser.find_element_by_css_selector("input[name=lastname]")
input2.send_keys("Petrov")
input3 = browser.find_element_by_css_selector("input[name=email]")
input3.send_keys("[email protected]")
#загружаем файл
upload=browser.find_element_by_css_selector("input[type=file]")
current_dir = os.path.abspath(os.path.dirname(__file__))
file_path = os.path.join(current_dir, 'dict.txt')
upload.send_keys(file_path)
#нажимаем submit
browser.find_element_by_tag_name('button').click()
finally:
# ожидание чтобы визуально оценить результаты прохождения скрипта
time.sleep(10)
# закрываем браузер после всех манипуляций
browser.quit()