ajout script

This commit is contained in:
Aurélien Plancke 2021-05-06 20:28:22 +02:00
parent 918836b312
commit 1aeeeb995a
3 changed files with 302 additions and 9 deletions

View File

@ -35,7 +35,7 @@ class PythonOrgSearch(unittest.TestCase):
# Test : creer un etudiant et verifie si sa fiche etudiante est creee
# @expected : A la soumission du formulaire on retrouve la fiche d'information avec le nip (unique) dans la page, on a également un resultat en recherchant l'étudiant
def test_creation_etudiant(self):
def test_01_creation_etudiant(self):
driver = self.driver
url = (
"https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/"
@ -55,7 +55,7 @@ class PythonOrgSearch(unittest.TestCase):
# Test : Creer un étudiant avec un nip qui est déjà présent dans la base Scodoc
# @expected : La création mène à une page qui affiche "code étudiant dupliqué", l'étudiant n'est pas créé
def test_creation_etudiant_avec_meme_nip(self):
def test_02_creation_etudiant_avec_meme_nip(self):
driver = self.driver
url = (
"https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/"
@ -71,12 +71,13 @@ class PythonOrgSearch(unittest.TestCase):
driver.find_element_by_id("tf_submit").click()
time.sleep(1)
self.assertTrue(
"<h3>Code étudiant (code_nip) dupliqué !</h3>" in driver.page_source
"Code étudiant (code_nip) dupliqué !"
in driver.find_element_by_id("titleError").text
)
# Test Modification de l'adresse étudiant
# expected : La nouvelle adresse est mise à jour sur la page information de l'étudiant
def test_modification_adresse_etudiant(self):
def test_03_modification_adresse_etudiant(self):
driver = self.driver
url = (
"https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/"
@ -95,11 +96,13 @@ class PythonOrgSearch(unittest.TestCase):
driver.find_element_by_id("tf_paysdomicile").send_keys(paysdomicile)
driver.find_element_by_id("tf_submit").click()
time.sleep(1)
self.assertTrue("Adresse :" in driver.page_source)
self.assertTrue(
codepostaldomicile in driver.find_element_by_id("champAdresse").text
)
# Test Inscription d'un étudiant dans un semestre
# @expected :
def test_inscription_etudiant(self):
def test_04_inscription_etudiant(self):
driver = self.driver
url = (
"https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/"
@ -107,7 +110,7 @@ class PythonOrgSearch(unittest.TestCase):
+ "/Scolarite/search_etud_in_dept"
)
driver.get(url)
element = driver.find_element_by_name("expnom")
element = driver.find_element_by_id("searchEtud")
element.send_keys(nomEtu)
element.submit()
time.sleep(1)
@ -123,7 +126,7 @@ class PythonOrgSearch(unittest.TestCase):
# Test Supprime un étudiant
# @expected : Lors d'une recherche sur le nom de l'étudiant, aucun résultat apparait
def test_suppresion_etudiant(self):
def test_05_suppresion_etudiant(self):
driver = self.driver
urlRecherche = (
"https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/"
@ -152,7 +155,11 @@ class PythonOrgSearch(unittest.TestCase):
element.send_keys(nomEtu)
element.submit()
time.sleep(1)
self.assertTrue("Aucun résultat" in driver.page_source)
try:
element = driver.find_element_by_id("titleNoResult")
self.assertTrue("Aucun résultat" in element.text)
except:
self.assertFalse(False)
# ferme la fenetre
def tearDown(self):

16
Script.txt Normal file
View File

@ -0,0 +1,16 @@
Script 1 : Création de département
Nom du département InfoTest
Script 2 : Création de la formation
Script 3 : Création des semestres
Script 4 : Création des étudiants
Deux étudiants par semestre (semestre 1,2,3,4)
Nommage des étudiants : Nom de famille : SemestreX
Prénom : EtudiantNumeroX
Script 5 : Création d'interrogation
Une interrogation nommé InterroTest
Script 6 : Ajout des notes aux étudiants
1 étudiant par semestre à 12 à l'interrogation précédente, l'autre à 7

View File

@ -4895,3 +4895,273 @@ JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scod
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620120031586 Marionette INFO Stopped listening on port 40349
1620300897263 geckodriver INFO Listening on 127.0.0.1:47359
1620300898267 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMWe57T"
1620300905145 Marionette INFO Listening on port 41519
1620300905189 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620300909780 Marionette INFO Stopped listening on port 41519
1620300917503 geckodriver INFO Listening on 127.0.0.1:39695
1620300918506 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqLU9sw"
1620300921715 Marionette INFO Listening on port 43181
1620300921794 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620300925564 Marionette INFO Stopped listening on port 43181
1620300931302 geckodriver INFO Listening on 127.0.0.1:58665
1620300932306 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0r0eEv"
1620300935525 Marionette INFO Listening on port 38033
1620300935595 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620300945385 Marionette INFO Stopped listening on port 38033
1620300950411 geckodriver INFO Listening on 127.0.0.1:39345
1620300951414 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0IrTVk"
1620300956366 Marionette INFO Listening on port 40633
1620300956409 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620300963563 Marionette INFO Stopped listening on port 40633
1620300967277 geckodriver INFO Listening on 127.0.0.1:57785
1620300968282 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDSccj8"
1620300972767 Marionette INFO Listening on port 45919
1620300972806 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620300980015 Marionette INFO Stopped listening on port 45919
1620304593471 geckodriver INFO Listening on 127.0.0.1:44821
1620304594475 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqhL37c"
1620304598473 Marionette INFO Listening on port 44779
1620304598551 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620304604039 Marionette INFO Stopped listening on port 44779
1620304609819 geckodriver INFO Listening on 127.0.0.1:50881
1620304610823 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqgfr6W"
1620304614447 Marionette INFO Listening on port 35347
1620304614504 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620304618916 Marionette INFO Stopped listening on port 35347
1620304627695 geckodriver INFO Listening on 127.0.0.1:56031
1620304628699 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRrVVJ5"
1620304633581 Marionette INFO Listening on port 39117
1620304633609 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620304636862 Marionette INFO Stopped listening on port 39117
1620304644830 geckodriver INFO Listening on 127.0.0.1:46159
1620304645833 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevowZBj"
1620304650618 Marionette INFO Listening on port 43665
1620304650676 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620304657851 Marionette INFO Stopped listening on port 43665
1620304661602 geckodriver INFO Listening on 127.0.0.1:47297
1620304662605 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehkaLWr"
1620304666380 Marionette INFO Listening on port 44889
1620304666404 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620304668515 Marionette INFO Stopped listening on port 44889
1620304887082 geckodriver INFO Listening on 127.0.0.1:60687
1620304888086 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefhQQ06"
1620304891417 Marionette INFO Listening on port 38257
1620304891462 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620304895586 Marionette INFO Stopped listening on port 38257
1620304900445 geckodriver INFO Listening on 127.0.0.1:42359
1620304901449 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileenkxvV"
1620304907182 Marionette INFO Listening on port 45839
1620304907274 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620304911886 Marionette INFO Stopped listening on port 45839
1620304915654 geckodriver INFO Listening on 127.0.0.1:39749
1620304916657 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileL2AgJj"
1620305339030 geckodriver INFO Listening on 127.0.0.1:47821
1620305340034 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilew28OaX"
1620305344969 Marionette INFO Listening on port 46343
1620305345043 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620305349053 Marionette INFO Stopped listening on port 46343
1620305352798 geckodriver INFO Listening on 127.0.0.1:34777
1620305353802 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0wyQBx"
1620305357016 Marionette INFO Listening on port 39241
1620305357096 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620305362256 Marionette INFO Stopped listening on port 39241
1620305371006 geckodriver INFO Listening on 127.0.0.1:53445
1620305372009 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOXM3FI"
1620305375378 Marionette INFO Listening on port 34629
1620305375393 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620305382221 Marionette INFO Stopped listening on port 34629
1620305386974 geckodriver INFO Listening on 127.0.0.1:51255
1620305387978 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileR9zSix"
1620305391174 Marionette INFO Listening on port 37141
1620305391252 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620305393373 Marionette INFO Stopped listening on port 37141
1620305397301 geckodriver INFO Listening on 127.0.0.1:50407
1620305398305 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepTSUnI"
1620305401513 Marionette INFO Listening on port 34809
1620305401597 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620305404429 Marionette INFO Stopped listening on port 34809
1620305472419 geckodriver INFO Listening on 127.0.0.1:33641
1620305473424 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileN1hHip"
1620305477442 Marionette INFO Listening on port 38423
1620305477516 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620305481527 Marionette INFO Stopped listening on port 38423
1620305488276 geckodriver INFO Listening on 127.0.0.1:53885
1620305489280 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileP1U5j4"
1620305492496 Marionette INFO Listening on port 37637
1620305492557 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620305496688 Marionette INFO Stopped listening on port 37637
1620305506369 geckodriver INFO Listening on 127.0.0.1:45859
1620305507373 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeFu19p"
1620305511222 Marionette INFO Listening on port 39469
1620305511265 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620305517830 Marionette INFO Stopped listening on port 39469
1620305518862 geckodriver INFO Listening on 127.0.0.1:60197
1620305519865 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile33n8WT"
1620305523613 Marionette INFO Listening on port 46055
1620305523671 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620305526013 Marionette INFO Stopped listening on port 46055
1620305527079 geckodriver INFO Listening on 127.0.0.1:52179
1620305528082 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilec8t4KY"
1620305531889 Marionette INFO Listening on port 42651
1620305531981 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620305538477 Marionette INFO Stopped listening on port 42651
1620306127188 geckodriver INFO Listening on 127.0.0.1:34727
1620306128192 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9lsLUC"
1620306132013 Marionette INFO Listening on port 42685
1620306132117 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620306136717 Marionette INFO Stopped listening on port 42685
1620306144379 geckodriver INFO Listening on 127.0.0.1:36027
1620306145383 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMTDJMu"
1620306149388 Marionette INFO Listening on port 33027
1620306149424 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620306153415 Marionette INFO Stopped listening on port 33027
1620306162037 geckodriver INFO Listening on 127.0.0.1:56197
1620306163044 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepz781G"
1620306167187 Marionette INFO Listening on port 34747
1620306167265 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620306173852 Marionette INFO Stopped listening on port 34747
1620306177599 geckodriver INFO Listening on 127.0.0.1:41611
1620306178602 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecQuHoo"
1620306181759 Marionette INFO Listening on port 37493
1620306181779 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620306189426 Marionette INFO Stopped listening on port 37493
1620306193103 geckodriver INFO Listening on 127.0.0.1:58623
1620306194108 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejuL15s"
1620306197348 Marionette INFO Listening on port 41953
1620306197400 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620306204790 Marionette INFO Stopped listening on port 41953
1620306878659 geckodriver INFO Listening on 127.0.0.1:42639
1620306879664 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileM0CtIy"
1620306882851 Marionette INFO Listening on port 45053
1620306882950 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620306887271 Marionette INFO Stopped listening on port 45053
1620306891081 geckodriver INFO Listening on 127.0.0.1:45049
1620306892085 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegWCbRq"
1620306895479 Marionette INFO Listening on port 34131
1620306895572 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620306899989 Marionette INFO Stopped listening on port 34131
1620306905834 geckodriver INFO Listening on 127.0.0.1:36101
1620306906838 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekf4C17"
1620306910037 Marionette INFO Listening on port 44421
1620306910144 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620306916766 Marionette INFO Stopped listening on port 44421
1620306924492 geckodriver INFO Listening on 127.0.0.1:36823
1620306925497 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5WfCki"
1620306928707 Marionette INFO Listening on port 42973
1620306928763 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620306937110 Marionette INFO Stopped listening on port 42973
1620306946873 geckodriver INFO Listening on 127.0.0.1:58069
1620306947877 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemNViFj"
1620306951223 Marionette INFO Listening on port 41765
1620306951265 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620306957982 Marionette INFO Stopped listening on port 41765
1620307774250 geckodriver INFO Listening on 127.0.0.1:56703
1620307775254 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7dOTzh"
1620307778368 Marionette INFO Listening on port 42079
1620307778466 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620307790437 Marionette INFO Stopped listening on port 42079
1620307797055 geckodriver INFO Listening on 127.0.0.1:37337
1620307798059 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTgSEjj"
1620307801112 Marionette INFO Listening on port 41707
1620307801138 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
JavaScript error: chrome://marionette/content/proxy.js, line 287: NS_ERROR_NOT_INITIALIZED
1620307808949 geckodriver INFO Listening on 127.0.0.1:49049
1620307809944 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTKqN5w"
JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations.
1620307816308 Marionette INFO Listening on port 39781
1620307816385 Marionette WARN TLS certificate errors will be ignored for this session
1620307817517 Marionette INFO Stopped listening on port 41707
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620307828817 Marionette INFO Stopped listening on port 39781
console.error: "Could not write session state file " (new Error("", "(unknown module)")) ""
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations.
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object
1620307829391 geckodriver INFO Listening on 127.0.0.1:43891
1620307830394 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebGRjeW"
1620307833877 Marionette INFO Listening on port 44707
1620307833907 Marionette WARN TLS certificate errors will be ignored for this session
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
1620307845889 Marionette INFO Stopped listening on port 44707
console.error: "Could not write session state file " (new Error("", "(unknown module)")) ""
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations.
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: , line 0: uncaught exception: Object
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object
JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object