-
Notifications
You must be signed in to change notification settings - Fork 11
/
form_test.py
60 lines (41 loc) · 1.56 KB
/
form_test.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# avem nevoie sa importam cateva librarii gratuite care ne ajuta sa controlam chrome
from selenium import webdriver
from selenium.webdriver.common.by import By
from time import sleep
# initializam chrome
chrome = webdriver.Chrome()
# navigam catre un url
chrome.get("https://demoqa.com/automation-practice-form")
# cu sleep putem pune pauza de cateva secunde sa asteptam sa vedem si noi ceva
sleep(1)
'''
exercitiu - maximizam fereastra
toate comenzile incep cu chrome. si sunt intuitive
scrie mai jos chrome. si gandeste-te care ar putea fi comanda corecta
'''
# gasim first name dupa ID si scriem valori in formular
chrome.find_element(By.ID, "firstName").send_keys("Andy")
sleep(1)
# exercitiu: completam impreuna last name apoi punem un sleep de 3 secunde
# exercitiu: completeaza singur email
# selectam gender
element = chrome.find_element(By.ID, "gender-radio-1")
chrome.execute_script("arguments[0].click();", element)
sleep(1)
# completam tel
# dam click pe submit
element = chrome.find_element(By.ID, "submit")
chrome.execute_script("arguments[0].click();", element)
sleep(1)
# inchidem popup
# inchidem chrome
chrome.quit()
# daca a trecut testul, printam in consola un mesaj de succes
print("SUCCESS - TEST PASSED")
'''
exercitiu final:
stergem toate comenzile de sleep pentru a vedea viteza testului in timp real
aceasta EFICIENTA ofera o valoare ENORMA si PERMANENTA angajatorilor
costul acestui test tinde spre 0, o data ce a fost scris
asa ca ei vor plati FOARTE BINE o data, ca sa primeasca si sa ramana cu aceasta valoare care ulterior, tinde spre ∞
'''