3 커밋 29eccac6fb ... f4c9cad473

작성자 SHA1 메시지 날짜
  Gogs f4c9cad473 Merge branch 'master' of http://178.32.216.95:3000/aahmad/groupe3 1 년 전
  Gogs 7b3aa61fbe Merge branch 'master' of http://178.32.216.95:3000/aahmad/groupe3 1 년 전
  Gogs 426bfa439a gestion d'erreur 1 년 전
2개의 변경된 파일471개의 추가작업 그리고 0개의 파일을 삭제
  1. 431 0
      rapporDeTest.html
  2. 40 0
      test_main.py

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 431 - 0
rapporDeTest.html


+ 40 - 0
test_main.py

@@ -0,0 +1,40 @@
+##### IMPORT
+import pytest
+import logging as log
+import time
+from selenium import webdriver
+from selenium.webdriver.common.by import By
+from selenium.webdriver.common.keys import Keys
+from selenium.webdriver.support import expected_conditions as EC
+from selenium.common.exceptions import TimeoutException
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.support.ui import Select
+from selenium.webdriver.firefox.options import Options
+from test_saucedemo import writeInInput
+
+
+def connexion_saucedemo(username, passwd, arg="--headless"):
+    log.info("Test du Login avec succès")
+    options = webdriver.FirefoxOptions()
+    options.add_argument(arg)
+
+    driver = webdriver.Firefox(options=options)
+    driver.get("https://www.saucedemo.com/")
+
+    username = driver.find_element(By.ID, "user-name")
+    password = driver.find_element(By.ID, "password")
+    login = driver.find_element(By.ID, "login-button")
+
+    writeInInput(inputElement=username, text=username)
+    writeInInput(password, text=passwd)
+    login.click()
+    log.info("")
+
+
+##### MANEL
+    
+    
+##### MATTHIEU
+
+
+##### TIFF

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.