diff --git a/02_creation_formation_test.py b/02_creation_formation_test.py index 707d71b..3541ab7 100644 --- a/02_creation_formation_test.py +++ b/02_creation_formation_test.py @@ -2,7 +2,14 @@ import unittest import time import subprocess -from setup import SCODOC_ADMIN_ID,SCODOC_ADMIN_PASS,BASE_URL,NOM_DPT, LINK_SCODOC_SERVER +from setup import ( + SCODOC_ADMIN_ID, + SCODOC_ADMIN_PASS, + BASE_URL, + NOM_DPT, + LINK_SCODOC_SERVER, + BASE_NOT_SECURED_URL, +) from selenium import webdriver from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.support.ui import Select, WebDriverWait @@ -14,13 +21,14 @@ from selenium.webdriver.support.select import Select URL = BASE_URL + NOM_DPT + "/Scolarite" ACRONYME_FORMATION = "FormationTEST" + + class PythonOrgSearch(unittest.TestCase): - cmdProcess = ['./scriptCreationDepartement.sh', LINK_SCODOC_SERVER, NOM_DPT] + cmdProcess = ["./scriptCreationDepartement.sh", LINK_SCODOC_SERVER, NOM_DPT] process = subprocess.Popen(cmdProcess) process.wait() # Permet de se connecter et se remettre sur la page d'accueil avant chaque test def setUp(self): - self.url = '' self.driver = webdriver.Firefox() self.wait = WebDriverWait(self.driver, 10) self.driver.get( @@ -28,7 +36,9 @@ class PythonOrgSearch(unittest.TestCase): + SCODOC_ADMIN_ID + ":" + SCODOC_ADMIN_PASS - + "@scodoc-dev-iutinfo.univ-lille.fr/force_admin_authentication" + + "@" + + BASE_NOT_SECURED_URL + + "force_admin_authentication" ) self.driver.get(BASE_URL + "/ScoDoc") @@ -36,49 +46,121 @@ class PythonOrgSearch(unittest.TestCase): # @expected : La formation se trouve dans le tableau de la liste des formations def test_011_create_formation(self): driver = self.driver + global URL driver.get(URL) driver.find_element_by_id("ProgrammesLink").click() - self.url = driver.current_url + URL = driver.current_url driver.find_element_by_id("create_formation_link").click() self.wait.until(EC.url_changes(URL)) driver.find_element_by_id("tf_acronyme").send_keys(ACRONYME_FORMATION) driver.find_element_by_id("tf_titre").send_keys("TEST") driver.find_element_by_id("tf_titre_officiel").send_keys("formation de test") driver.find_element_by_id("tf_submit").click() - driver.get(self.url) + driver.get(URL) formations = driver.find_elements_by_class_name("acronyme") textElementAcronyme = [] for formation in formations: textElementAcronyme.append(formation.text) self.assertTrue(ACRONYME_FORMATION in textElementAcronyme) - def test_012_create_formation_with_same_name(self): + # Test : Changement du nom d'une formation + # @expected : Le nom de la formation est changé sur la page des formations + def test_012_change_name_formation(self): driver = self.driver - url = self.url - driver.get(url) + global URL + driver.get(URL) idEditFormation = "edit_Formation_" + ACRONYME_FORMATION driver.find_element_by_id(idEditFormation).click() self.wait.until(EC.url_changes(URL)) - driver.find_element_by_id("tf_acronyme").send_keys(ACRONYME_FORMATION + ACRONYME_FORMATION) + driver.find_element_by_id("tf_acronyme").send_keys(ACRONYME_FORMATION) driver.find_element_by_id("tf_submit").click() - driver.get(self.url) - formations = driver.find_elements_by_class_name(" acronyme") + driver.get(URL) + formations = driver.find_elements_by_class_name("acronyme") textElementAcronyme = [] for formation in formations: textElementAcronyme.append(formation.text) self.assertTrue(ACRONYME_FORMATION + ACRONYME_FORMATION in textElementAcronyme) - + # Remise du nom à celui de départ + driver.get(URL) + idEditFormation = "edit_Formation_" + ACRONYME_FORMATION + ACRONYME_FORMATION + driver.find_element_by_id(idEditFormation).click() + self.wait.until(EC.url_changes(URL)) + driver.find_element_by_id("tf_acronyme").clear() + driver.find_element_by_id("tf_acronyme").send_keys(ACRONYME_FORMATION) + driver.find_element_by_id("tf_submit").click() + + # Test : Création d'une formation avec le même nom qu'une autre déjà existante + # @expected : La formation n'as pas pu être créée et on arrive donc sur un message d'erreur à la création + def test_013_same_name_formation(self): + driver = self.driver + global URL + driver.get(URL) + driver.find_element_by_id("create_formation_link").click() + self.wait.until(EC.url_changes(URL)) + driver.find_element_by_id("tf_acronyme").send_keys(ACRONYME_FORMATION) + driver.find_element_by_id("tf_titre").send_keys("TEST") + driver.find_element_by_id("tf_titre_officiel").send_keys("formation de test") + driver.find_element_by_id("tf_submit").click() + try: + driver.find_element_by_id("errorMessage") + except NoSuchElementException: + self.assertFalse(True) + self.assertTrue(True) + + # Test : Ajout d'un semestre dans la formation + # @Expected : Le semestre est créé et il apparait désormais dans la table des formations + def test_014_ajout_Semestre(self): + driver = self.driver + global URL + driver.get(URL) + idAddSemestre = "addSemestre_" + ACRONYME_FORMATION + driver.find_element_by_id(idAddSemestre).click() + self.wait.until(EC.url_changes(URL)) + driver.find_element_by_name("date_debut").send_keys("01/01/2021") + driver.find_element_by_name("date_fin").send_keys("30/06/2021") + driver.find_element_by_name("responsable_id").send_keys("BACH Test (Bach)") + Select(driver.find_element_by_id("tf_semestre_id")).select_by_value("4") + driver.find_element_by_id("tf_submit").click() + self.wait.until(EC.url_changes(URL)) + self.assertTrue( + "Nouveau semestre créé" + in driver.find_element_by_class_name("head_message").text + ) + driver.get(URL) + + self.assertTrue((NOM_DPT.upper() + "-" + "DUT" + "--") in driver.page_source) + + # Test : Supprime une formation après avoir supprimé les semestres qui y sont rattachés + # @expected : La formation n'apparait plus dans le tableau des formations def test_020_delete_formation(self): driver = self.driver - url = self.url - driver.get(self.url) - driver.find_element_by_id("ProgrammesLink").click() - url = driver.current_url - idButtonDelete = "delete_Formation_"+ACRONYME_FORMATION + global URL + driver.get(URL) + idButtonDelete = "delete_Formation_" + ACRONYME_FORMATION driver.find_element_by_id(idButtonDelete).click() - self.wait.until(EC.url_changes(url)) - driver.find_element_by_xpath("//input[@value='Supprimer cette formation']").click() - driver.get(self.url) + self.wait.until(EC.url_changes(URL)) + tmpURLDelete = driver.current_url + listeSemestres = driver.find_elements_by_xpath( + "//a[contains(@href, 'formsemestre_status?')]" + ) + for semestre in listeSemestres: + semestre.click() + self.wait.until(EC.url_changes(URL)) + driver.find_element_by_xpath( + "(//a[contains(text(),'Semestre')])[2]" + ).click() + driver.find_element_by_xpath( + "//a[contains(@href, 'formsemestre_delete?')]" + ).click() + self.wait.until(EC.url_changes(URL)) + driver.find_element_by_id("tf_submit").click() + time.sleep(2) + driver.find_element_by_xpath("//input[@value='OK']").click() + driver.get(tmpURLDelete) + driver.find_element_by_xpath( + "//input[@value='Supprimer cette formation']" + ).click() + driver.get(URL) try: driver.find_element_by_id(idButtonDelete) self.assertTrue(False) diff --git a/03_etudiant_test.py b/03_etudiant_test.py index 3531b3a..21cac38 100644 --- a/03_etudiant_test.py +++ b/03_etudiant_test.py @@ -1,6 +1,6 @@ import unittest import time -from setup import SCODOC_ADMIN_ID,SCODOC_ADMIN_PASS,BASE_URL,NOM_DPT +from setup import SCODOC_ADMIN_ID, SCODOC_ADMIN_PASS, BASE_URL, NOM_DPT import urllib.parse as urlparse from urllib.parse import parse_qs from selenium import webdriver @@ -9,8 +9,6 @@ from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.support.ui import Select, WebDriverWait from selenium.webdriver.support.select import Select -SCODOC_ADMIN_ID = "admin" -SCODOC_ADMIN_PASS = "root_pass_42" nomDPT = "AurelienUS" nomEtu = "UnAutreEtudiant" prenomEtu = "Normal" diff --git a/__pycache__/setup.cpython-37.pyc b/__pycache__/setup.cpython-37.pyc index 9ef4019..b04998f 100644 Binary files a/__pycache__/setup.cpython-37.pyc and b/__pycache__/setup.cpython-37.pyc differ diff --git a/geckodriver.log b/geckodriver.log index 6e2c584..5772fbc 100644 --- a/geckodriver.log +++ b/geckodriver.log @@ -8899,3 +8899,1202 @@ 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 1621605858678 Marionette INFO Stopped listening on port 46873 +1621930890729 geckodriver INFO Listening on 127.0.0.1:49665 +1621930891723 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVNUVja" +1621930899779 Marionette INFO Listening on port 37347 +1621930899881 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 +1621930905431 Marionette INFO Stopped listening on port 37347 +1621930910516 geckodriver INFO Listening on 127.0.0.1:36847 +1621930911521 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegIV8lf" +1621930916385 Marionette INFO Listening on port 44209 +1621930916516 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 +1621930918411 Marionette INFO Stopped listening on port 44209 +1621930919604 geckodriver INFO Listening on 127.0.0.1:50449 +1621930920615 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJ7aBsy" +1621930925423 Marionette INFO Listening on port 35363 +1621930925516 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 +1621930927378 Marionette INFO Stopped listening on port 35363 +1621945127936 geckodriver INFO Listening on 127.0.0.1:57257 +1621945128941 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoPoa8D" +1621945134354 Marionette INFO Listening on port 41023 +1621945134400 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 +1621945139372 Marionette INFO Stopped listening on port 41023 +1621945144332 geckodriver INFO Listening on 127.0.0.1:54945 +1621945145341 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUgRTUb" +1621945150962 Marionette INFO Listening on port 41095 +1621945150973 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 +1621945152894 Marionette INFO Stopped listening on port 41095 +1621945156933 geckodriver INFO Listening on 127.0.0.1:43541 +1621945157943 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileASFttN" +1621945163403 Marionette INFO Listening on port 45323 +1621945163415 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 +1621945165467 Marionette INFO Stopped listening on port 45323 +1621945209011 geckodriver INFO Listening on 127.0.0.1:57029 +1621945210011 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6G60xl" +1621945215713 Marionette INFO Listening on port 44833 +1621945215744 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 +1621945225642 Marionette INFO Stopped listening on port 44833 +1621945236743 geckodriver INFO Listening on 127.0.0.1:50725 +1621945237754 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilez44SYj" +1621945243807 Marionette INFO Listening on port 44357 +1621945243898 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 +1621945245760 Marionette INFO Stopped listening on port 44357 +1621945251787 geckodriver INFO Listening on 127.0.0.1:35019 +1621945252796 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSI7Ylg" +1621945258229 Marionette INFO Listening on port 46413 +1621945258273 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 +1621945261149 Marionette INFO Stopped listening on port 46413 +1621945365038 geckodriver INFO Listening on 127.0.0.1:53385 +1621945366042 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileA8eGqS" +1621945372199 Marionette INFO Listening on port 46341 +1621945372275 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 +1621945374141 Marionette INFO Stopped listening on port 46341 +1621945379105 geckodriver INFO Listening on 127.0.0.1:55431 +1621945380118 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileitflLZ" +1621945386658 Marionette INFO Listening on port 37809 +1621945386731 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 +1621945389034 Marionette INFO Stopped listening on port 37809 +1621945398973 geckodriver INFO Listening on 127.0.0.1:60581 +1621945399977 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiled6eIXb" +1621945404980 Marionette INFO Listening on port 33039 +1621945405042 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 +1621945407498 Marionette INFO Stopped listening on port 33039 +1621945575408 geckodriver INFO Listening on 127.0.0.1:41341 +1621945576415 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBTkYO1" +1621945580723 Marionette INFO Listening on port 33001 +1621945580811 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 +1621945583252 Marionette INFO Stopped listening on port 33001 +1621945588741 geckodriver INFO Listening on 127.0.0.1:58799 +1621945589735 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefBW2FP" +1621945596868 Marionette INFO Listening on port 39031 +1621945596927 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 +1621945601598 Marionette INFO Stopped listening on port 39031 +1621945609444 geckodriver INFO Listening on 127.0.0.1:33253 +1621945610455 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4ftTg9" +1621945614997 Marionette INFO Listening on port 46715 +1621945615020 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 +1621945617385 Marionette INFO Stopped listening on port 46715 +1621945703374 geckodriver INFO Listening on 127.0.0.1:51427 +1621945704380 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3y3LTR" +1621945710147 Marionette INFO Listening on port 44641 +1621945710158 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 +1621945714454 Marionette INFO Stopped listening on port 44641 +1621945719556 geckodriver INFO Listening on 127.0.0.1:56461 +1621945720568 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileISBeGs" +1621945725564 Marionette INFO Listening on port 41481 +1621945725645 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 +1621945729994 Marionette INFO Stopped listening on port 41481 +1621945736056 geckodriver INFO Listening on 127.0.0.1:56807 +1621945737066 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2rnvUx" +1621945742423 Marionette INFO Listening on port 44213 +1621945742440 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 +1621945745525 Marionette INFO Stopped listening on port 44213 +1621945783476 geckodriver INFO Listening on 127.0.0.1:58983 +1621945784486 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileANHNkV" +1621945789714 Marionette INFO Listening on port 44091 +1621945789743 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 +1621945794807 Marionette INFO Stopped listening on port 44091 +1621945800862 geckodriver INFO Listening on 127.0.0.1:34107 +1621945801866 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUKi0hS" +1621945807222 Marionette INFO Listening on port 38907 +1621945807316 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 +1621945812805 Marionette INFO Stopped listening on port 38907 +1621945814291 geckodriver INFO Listening on 127.0.0.1:57565 +1621945815299 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile390TlT" +1621945820145 Marionette INFO Listening on port 43595 +1621945820173 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 +1621945824304 Marionette INFO Stopped listening on port 43595 +1621945887532 geckodriver INFO Listening on 127.0.0.1:55413 +1621945888544 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKfShiG" +1621945896622 Marionette INFO Listening on port 36407 +1621945896641 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 +1621945904629 Marionette INFO Stopped listening on port 36407 +1621945908913 geckodriver INFO Listening on 127.0.0.1:36823 +1621945909922 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehaiPHz" +1621945915971 Marionette INFO Listening on port 44151 +1621945916021 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 +1621945922694 Marionette INFO Stopped listening on port 44151 +1621945930705 geckodriver INFO Listening on 127.0.0.1:42775 +1621945931709 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMIqp90" +1621945936461 Marionette INFO Listening on port 41963 +1621945936563 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 +1621945939602 Marionette INFO Stopped listening on port 41963 +1621946105205 geckodriver INFO Listening on 127.0.0.1:52085 +1621946106214 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAcgwrC" +1621946110961 Marionette INFO Listening on port 45951 +1621946111005 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 +1621946116607 Marionette INFO Stopped listening on port 45951 +1621946122640 geckodriver INFO Listening on 127.0.0.1:41227 +1621946123650 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJtvtBq" +1621946128502 Marionette INFO Listening on port 37893 +1621946128514 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 +1621946133412 Marionette INFO Stopped listening on port 37893 +1621946142513 geckodriver INFO Listening on 127.0.0.1:59499 +1621946143518 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekeoA8i" +1621946149150 Marionette INFO Listening on port 38955 +1621946149161 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 +1621946151931 Marionette INFO Stopped listening on port 38955 +1621946234972 geckodriver INFO Listening on 127.0.0.1:48915 +1621946235984 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilel61jd1" +1621946240407 Marionette INFO Listening on port 39343 +1621946240440 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 +1621946245841 Marionette INFO Stopped listening on port 39343 +1621946252931 geckodriver INFO Listening on 127.0.0.1:56057 +1621946253942 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9G3w71" +1621946258345 Marionette INFO Listening on port 43011 +1621946258379 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 +1621946264282 Marionette INFO Stopped listening on port 43011 +1621946269277 geckodriver INFO Listening on 127.0.0.1:36647 +1621946270293 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepJuTqI" +1621946274639 Marionette INFO Listening on port 41985 +1621946274762 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 +1621946278810 Marionette INFO Stopped listening on port 41985 +1621946430723 geckodriver INFO Listening on 127.0.0.1:39953 +1621946431727 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAwyB7l" +1621946437751 Marionette INFO Listening on port 44067 +1621946437829 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 +1621946442664 Marionette INFO Stopped listening on port 44067 +1621946446610 geckodriver INFO Listening on 127.0.0.1:58365 +1621946447613 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeDfYjR" +1621946452406 Marionette INFO Listening on port 36429 +1621946452487 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 +1621946458346 Marionette INFO Stopped listening on port 36429 +1621946462350 geckodriver INFO Listening on 127.0.0.1:38063 +1621946463360 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqn1Xnn" +1621946467966 Marionette INFO Listening on port 41811 +1621946468042 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 +console.error: "Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers." +1621946522631 Marionette INFO Stopped listening on port 41811 +1621946524298 geckodriver INFO Listening on 127.0.0.1:44047 +1621946525306 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCkawP8" +1621946531224 Marionette INFO Listening on port 45563 +1621946531250 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 +1621946537089 Marionette INFO Stopped listening on port 45563 +1621946565272 geckodriver INFO Listening on 127.0.0.1:54341 +1621946566283 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUkjTDc" +1621946571406 Marionette INFO Listening on port 44077 +1621946571472 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 +1621946576419 Marionette INFO Stopped listening on port 44077 +1621946582467 geckodriver INFO Listening on 127.0.0.1:56019 +1621946583469 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilew7vSj7" +1621946588621 Marionette INFO Listening on port 37815 +1621946588676 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 +1621946595105 Marionette INFO Stopped listening on port 37815 +1621946601161 geckodriver INFO Listening on 127.0.0.1:37565 +1621946602170 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilew9rSxq" +1621946607088 Marionette INFO Listening on port 40241 +1621946607164 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 +1621946615961 Marionette INFO Stopped listening on port 40241 +1621946619912 geckodriver INFO Listening on 127.0.0.1:46123 +1621946620924 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileuyPmCX" +1621946627671 Marionette INFO Listening on port 46707 +1621946627743 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 +1621946633663 Marionette INFO Stopped listening on port 46707 +1621946666317 geckodriver INFO Listening on 127.0.0.1:33031 +1621946667329 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCvpgq8" +1621946673256 Marionette INFO Listening on port 44897 +1621946673307 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 +1621946678250 Marionette INFO Stopped listening on port 44897 +1621946679335 geckodriver INFO Listening on 127.0.0.1:54293 +1621946680348 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFi29IB" +1621946684890 Marionette INFO Listening on port 39105 +1621946684964 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 +1621946693144 Marionette INFO Stopped listening on port 39105 +1621946699070 geckodriver INFO Listening on 127.0.0.1:39421 +1621946700080 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDD0sIu" +1621946704506 Marionette INFO Listening on port 46789 +1621946704538 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 +1621946713048 Marionette INFO Stopped listening on port 46789 +1621946716969 geckodriver INFO Listening on 127.0.0.1:39559 +1621946717980 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletu7s8S" +1621946722511 Marionette INFO Listening on port 45955 +1621946722565 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 +1621946726645 Marionette INFO Stopped listening on port 45955 +1621947125570 geckodriver INFO Listening on 127.0.0.1:45537 +1621947126582 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0WUU3J" +1621947133871 Marionette INFO Listening on port 44455 +1621947133939 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 +1621947140512 Marionette INFO Stopped listening on port 44455 +1621947141732 geckodriver INFO Listening on 127.0.0.1:54565 +1621947142737 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZmNEUx" +1621947148307 Marionette INFO Listening on port 38551 +1621947148376 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 +1621947155305 Marionette INFO Stopped listening on port 38551 +1621947158162 geckodriver INFO Listening on 127.0.0.1:51529 +1621947159166 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXlbCwC" +1621947163717 Marionette INFO Listening on port 43435 +1621947163750 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 +1621947172520 Marionette INFO Stopped listening on port 43435 +1621947176307 geckodriver INFO Listening on 127.0.0.1:33513 +1621947177315 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenYlY8n" +1621947181799 Marionette INFO Listening on port 36851 +1621947181850 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 +1621947186170 Marionette INFO Stopped listening on port 36851 +1621947222753 geckodriver INFO Listening on 127.0.0.1:46235 +1621947223759 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXZyPEm" +1621947229494 Marionette INFO Listening on port 39949 +1621947229585 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 +1621947235028 Marionette INFO Stopped listening on port 39949 +1621947240949 geckodriver INFO Listening on 127.0.0.1:38479 +1621947241956 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXhtPI6" +1621947246535 Marionette INFO Listening on port 35001 +1621947246606 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 +1621947253210 Marionette INFO Stopped listening on port 35001 +1621947258147 geckodriver INFO Listening on 127.0.0.1:36095 +1621947259158 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenLL6S9" +1621947263598 Marionette INFO Listening on port 43639 +1621947263648 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 +1621947272493 Marionette INFO Stopped listening on port 43639 +1621947281292 geckodriver INFO Listening on 127.0.0.1:45201 +1621947282299 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerC3pZ1" +1621947288469 Marionette INFO Listening on port 37491 +1621947288490 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 +1621947294520 Marionette INFO Stopped listening on port 37491 +1621947472446 geckodriver INFO Listening on 127.0.0.1:57725 +1621947473451 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepTwgQI" +1621947479056 Marionette INFO Listening on port 35393 +1621947479171 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 +1621947484304 Marionette INFO Stopped listening on port 35393 +1621947490220 geckodriver INFO Listening on 127.0.0.1:54941 +1621947491226 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9EeKKY" +1621947496643 Marionette INFO Listening on port 46481 +1621947496719 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 +1621947504024 Marionette INFO Stopped listening on port 46481 +1621947506106 geckodriver INFO Listening on 127.0.0.1:46949 +1621947507115 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewfodez" +1621947513076 Marionette INFO Listening on port 35039 +1621947513129 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 +1621947522081 Marionette INFO Stopped listening on port 35039 +1621947525061 geckodriver INFO Listening on 127.0.0.1:41081 +1621947526070 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXKogwV" +1621947530763 Marionette INFO Listening on port 40487 +1621947530835 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 +1621947535375 Marionette INFO Stopped listening on port 40487 +1622020531226 geckodriver INFO Listening on 127.0.0.1:44809 +1622020532213 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAGy6SQ" +1622020537895 Marionette INFO Listening on port 40969 +1622020537973 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 +1622020542125 Marionette INFO Stopped listening on port 40969 +1622020551862 geckodriver INFO Listening on 127.0.0.1:43875 +1622020552866 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5G5FOh" +1622020556335 Marionette INFO Listening on port 45427 +1622020556352 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 +1622020560599 Marionette INFO Stopped listening on port 45427 +1622020564553 geckodriver INFO Listening on 127.0.0.1:36165 +1622020565553 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOgkXUn" +1622020570163 Marionette INFO Listening on port 45309 +1622020570247 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 +1622020578371 Marionette INFO Stopped listening on port 45309 +1622020583149 geckodriver INFO Listening on 127.0.0.1:58619 +1622020584152 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilex2rU5S" +1622020587286 Marionette INFO Listening on port 40495 +1622020587342 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 +1622020589309 Marionette INFO Stopped listening on port 40495 +1622020595203 geckodriver INFO Listening on 127.0.0.1:51961 +1622020596205 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileefX973" +1622020600282 Marionette INFO Listening on port 37729 +1622020600305 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 +1622020603638 Marionette INFO Stopped listening on port 37729 +1622020617543 geckodriver INFO Listening on 127.0.0.1:44581 +1622020618546 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAWmSOs" +1622020621621 Marionette INFO Listening on port 44781 +1622020621711 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 +1622020625167 Marionette INFO Stopped listening on port 44781 +1622020630046 geckodriver INFO Listening on 127.0.0.1:38649 +1622020631050 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileF34Eq0" +1622020634057 Marionette INFO Listening on port 41711 +1622020634106 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 +1622020638602 Marionette INFO Stopped listening on port 41711 +1622020649343 geckodriver INFO Listening on 127.0.0.1:44719 +1622020650347 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilervjtLC" +1622020653782 Marionette INFO Listening on port 32907 +1622020653854 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 +1622020656695 Marionette INFO Stopped listening on port 32907 +1622020660474 geckodriver INFO Listening on 127.0.0.1:56359 +1622020661478 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejcFzrH" +1622020664548 Marionette INFO Listening on port 41697 +1622020664641 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 +1622020666696 Marionette INFO Stopped listening on port 41697 +1622020676409 geckodriver INFO Listening on 127.0.0.1:46307 +1622020677412 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilef5g05P" +1622020680947 Marionette INFO Listening on port 32775 +1622020680977 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 +1622020684262 Marionette INFO Stopped listening on port 32775 +1622020748086 geckodriver INFO Listening on 127.0.0.1:51457 +1622020749089 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBhbCXl" +1622020753383 Marionette INFO Listening on port 41647 +1622020753442 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 +1622020757701 Marionette INFO Stopped listening on port 41647 +1622020765017 geckodriver INFO Listening on 127.0.0.1:38485 +1622020766020 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletqeu8i" +1622020769092 Marionette INFO Listening on port 35507 +1622020769171 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 +1622020773582 Marionette INFO Stopped listening on port 35507 +1622020782334 geckodriver INFO Listening on 127.0.0.1:35161 +1622020783338 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile97do6G" +1622020786562 Marionette INFO Listening on port 38005 +1622020786587 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 +1622020789337 Marionette INFO Stopped listening on port 38005 +1622020794150 geckodriver INFO Listening on 127.0.0.1:45621 +1622020795153 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRuH6Rk" +1622020798663 Marionette INFO Listening on port 38037 +1622020798762 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 +console.error: "Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers." +1622020810794 Marionette INFO Stopped listening on port 38037 +1622020815759 geckodriver INFO Listening on 127.0.0.1:49487 +1622020816763 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTnKP1z" +1622020820249 Marionette INFO Listening on port 33151 +1622020820349 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 +1622020823361 Marionette INFO Stopped listening on port 33151 +1622021062358 geckodriver INFO Listening on 127.0.0.1:34717 +1622021063368 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileReavqe" +1622021067024 Marionette INFO Listening on port 43299 +1622021067073 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 +1622021071440 Marionette INFO Stopped listening on port 43299 +1622021078339 geckodriver INFO Listening on 127.0.0.1:49621 +1622021079344 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileg61VLA" +1622021082573 Marionette INFO Listening on port 42117 +1622021082651 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 +1622021087314 Marionette INFO Stopped listening on port 42117 +1622021092171 geckodriver INFO Listening on 127.0.0.1:38589 +1622021093174 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevwP0cq" +1622021096225 Marionette INFO Listening on port 34207 +1622021096243 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 +1622021099019 Marionette INFO Stopped listening on port 34207 +1622021107730 geckodriver INFO Listening on 127.0.0.1:39219 +1622021108734 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile30ACbq" +1622021111852 Marionette INFO Listening on port 33881 +1622021111910 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 +1622021134419 Marionette INFO Stopped listening on port 33881 +1622021142347 geckodriver INFO Listening on 127.0.0.1:49185 +1622021143351 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLd6gyY" +1622021146342 Marionette INFO Listening on port 45703 +1622021146432 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 +1622021149462 Marionette INFO Stopped listening on port 45703 +1622029110309 geckodriver INFO Listening on 127.0.0.1:48147 +1622029111312 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehSDX7Q" +1622029115826 Marionette INFO Listening on port 40611 +1622029115858 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 +1622029119896 Marionette INFO Stopped listening on port 40611 +1622029128603 geckodriver INFO Listening on 127.0.0.1:36537 +1622029129606 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileE6k7zH" +1622029132626 Marionette INFO Listening on port 33425 +1622029132689 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 +1622029137020 Marionette INFO Stopped listening on port 33425 +1622029143728 geckodriver INFO Listening on 127.0.0.1:47649 +1622029144731 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilele4lPQ" +1622029147617 Marionette INFO Listening on port 36679 +1622029147703 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 +1622029150469 Marionette INFO Stopped listening on port 36679 +1622029159148 geckodriver INFO Listening on 127.0.0.1:39629 +1622029160151 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZtBVqn" +1622029163193 Marionette INFO Listening on port 37835 +1622029163214 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 +1622029166639 Marionette INFO Stopped listening on port 37835 +1622029172375 geckodriver INFO Listening on 127.0.0.1:33355 +1622029173378 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilev4pc6J" +1622029176350 Marionette INFO Listening on port 36957 +1622029176447 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 +1622029178999 Marionette INFO Stopped listening on port 36957 +1622030495104 geckodriver INFO Listening on 127.0.0.1:54447 +1622030496097 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiDv836" +1622030503019 Marionette INFO Listening on port 35117 +1622030503096 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 +1622030509012 Marionette INFO Stopped listening on port 35117 +1622030512767 geckodriver INFO Listening on 127.0.0.1:41549 +1622030513771 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6BmcQ5" +1622030518760 Marionette INFO Listening on port 45835 +1622030518807 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 +1622030524693 Marionette INFO Stopped listening on port 45835 +1622030533797 geckodriver INFO Listening on 127.0.0.1:47077 +1622030534802 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4dFUEk" +1622030541429 Marionette INFO Listening on port 40665 +1622030541515 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 +1622030546408 Marionette INFO Stopped listening on port 40665 +1622030550606 geckodriver INFO Listening on 127.0.0.1:55227 +1622030551610 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6N2hOH" +1622030557416 Marionette INFO Listening on port 45215 +1622030557432 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 +1622030561800 Marionette INFO Stopped listening on port 45215 +1622030565609 geckodriver INFO Listening on 127.0.0.1:44723 +1622030566613 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCqLjl7" +1622030570270 Marionette INFO Listening on port 41321 +1622030570308 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 +1622030573081 Marionette INFO Stopped listening on port 41321 +1622030748177 geckodriver INFO Listening on 127.0.0.1:40759 +1622030749180 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6zdvjs" +1622030752957 Marionette INFO Listening on port 37619 +1622030753051 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 +1622030756722 Marionette INFO Stopped listening on port 37619 +1622030760492 geckodriver INFO Listening on 127.0.0.1:34857 +1622030761496 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilersbz8o" +1622030764705 Marionette INFO Listening on port 34867 +1622030764795 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 +1622030769297 Marionette INFO Stopped listening on port 34867 +1622030778015 geckodriver INFO Listening on 127.0.0.1:44887 +1622030779019 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilev2yCe4" +1622030782207 Marionette INFO Listening on port 38211 +1622030782297 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 +1622030785119 Marionette INFO Stopped listening on port 38211 +1622030790975 geckodriver INFO Listening on 127.0.0.1:41269 +1622030791979 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0tnqQI" +1622030795101 Marionette INFO Listening on port 45863 +1622030795147 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 +1622030798977 Marionette INFO Stopped listening on port 45863 +1622030803768 geckodriver INFO Listening on 127.0.0.1:32769 +1622030804772 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRYgHJU" +1622030807897 Marionette INFO Listening on port 39915 +1622030807989 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 +1622030810731 Marionette INFO Stopped listening on port 39915 +1622031360845 geckodriver INFO Listening on 127.0.0.1:43077 +1622031361849 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegPQkZu" +1622031364933 Marionette INFO Listening on port 45557 +1622031364982 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 +1622031368862 Marionette INFO Stopped listening on port 45557 +1622031380579 geckodriver INFO Listening on 127.0.0.1:41431 +1622031381583 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCVY3Q1" +1622031385550 Marionette INFO Listening on port 38465 +1622031385582 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 +1622031390246 Marionette INFO Stopped listening on port 38465 +1622031395053 geckodriver INFO Listening on 127.0.0.1:41177 +1622031396057 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJzkhOa" +1622031399621 Marionette INFO Listening on port 40377 +1622031399645 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 +1622031402449 Marionette INFO Stopped listening on port 40377 +1622031407172 geckodriver INFO Listening on 127.0.0.1:45269 +1622031408176 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKw4ydE" +1622031411736 Marionette INFO Listening on port 36773 +1622031411751 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 +1622031415539 Marionette INFO Stopped listening on port 36773 +1622031418372 geckodriver INFO Listening on 127.0.0.1:43549 +1622031419376 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNblcmx" +1622031423273 Marionette INFO Listening on port 32917 +1622031423371 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 +1622031425936 Marionette INFO Stopped listening on port 32917 +1622031534323 geckodriver INFO Listening on 127.0.0.1:44005 +1622031535326 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5qXWFW" +1622031538596 Marionette INFO Listening on port 33081 +1622031538621 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 +1622031542455 Marionette INFO Stopped listening on port 33081 +1622031547273 geckodriver INFO Listening on 127.0.0.1:39715 +1622031548277 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevWlOdr" +1622031551363 Marionette INFO Listening on port 41719 +1622031551455 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 +1622031556462 Marionette INFO Stopped listening on port 41719 +1622031562243 geckodriver INFO Listening on 127.0.0.1:59449 +1622031563247 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexiBdbM" +1622031566372 Marionette INFO Listening on port 37113 +1622031566413 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 +1622031569288 Marionette INFO Stopped listening on port 37113 +1622031573103 geckodriver INFO Listening on 127.0.0.1:48355 +1622031574108 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZPOr8p" +1622031577303 Marionette INFO Listening on port 34129 +1622031577396 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 +1622031581166 Marionette INFO Stopped listening on port 34129 +1622031589862 geckodriver INFO Listening on 127.0.0.1:58983 +1622031590865 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledxnHRT" +1622031594126 Marionette INFO Listening on port 36711 +1622031594167 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 +1622031596930 Marionette INFO Stopped listening on port 36711 +1622031746569 geckodriver INFO Listening on 127.0.0.1:36337 +1622031747571 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeNMTMB" +1622031751716 Marionette INFO Listening on port 37467 +1622031751750 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 +1622031755835 Marionette INFO Stopped listening on port 37467 +1622031761724 geckodriver INFO Listening on 127.0.0.1:50589 +1622031762728 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWoL6Q3" +1622031765747 Marionette INFO Listening on port 36987 +1622031765785 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 +1622031770378 Marionette INFO Stopped listening on port 36987 +1622031777171 geckodriver INFO Listening on 127.0.0.1:55941 +1622031778175 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDeElPg" +1622031781298 Marionette INFO Listening on port 42475 +1622031781341 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 +1622031784078 Marionette INFO Stopped listening on port 42475 +1622031788844 geckodriver INFO Listening on 127.0.0.1:47739 +1622031789849 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileybjK69" +1622031792985 Marionette INFO Listening on port 33251 +1622031793017 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 +1622031797418 Marionette INFO Stopped listening on port 33251 +1622031806145 geckodriver INFO Listening on 127.0.0.1:36501 +1622031807138 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileEE6cIQ" +1622031810336 Marionette INFO Listening on port 34029 +1622031810431 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 +1622031818241 Marionette INFO Stopped listening on port 34029 +1622033752178 geckodriver INFO Listening on 127.0.0.1:42323 +1622033753182 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUQANUx" +1622033756376 Marionette INFO Listening on port 38941 +1622033756468 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 +1622033760219 Marionette INFO Stopped listening on port 38941 +1622033769983 geckodriver INFO Listening on 127.0.0.1:33979 +1622033770986 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGqgIHC" +1622033774228 Marionette INFO Listening on port 37361 +1622033774277 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 +1622033779107 Marionette INFO Stopped listening on port 37361 +1622033781895 geckodriver INFO Listening on 127.0.0.1:54427 +1622033782899 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTowDtB" +1622033786000 Marionette INFO Listening on port 46371 +1622033786093 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 +1622033789049 Marionette INFO Stopped listening on port 46371 +1622033796724 geckodriver INFO Listening on 127.0.0.1:33639 +1622033797722 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMX8YUo" +1622033800860 Marionette INFO Listening on port 45977 +1622033800906 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 +1622033805074 Marionette INFO Stopped listening on port 45977 +1622033806782 geckodriver INFO Listening on 127.0.0.1:38617 +1622033807785 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBcbgKg" +1622033810949 Marionette INFO Listening on port 34411 +1622033810965 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 +1622033818489 Marionette INFO Stopped listening on port 34411 +1622034635931 geckodriver INFO Listening on 127.0.0.1:42151 +1622034636933 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile50tvkO" +1622034641288 Marionette INFO Listening on port 34165 +1622034641315 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 +1622034646015 Marionette INFO Stopped listening on port 34165 +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +Exiting due to channel error. +1622034695543 geckodriver INFO Listening on 127.0.0.1:43081 +1622034696545 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIIONsD" +1622036374229 geckodriver INFO Listening on 127.0.0.1:48007 +1622036375233 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileubKXmI" +console.warn: services.settings: main/cfr-fxa sync interrupted by shutdown +console.warn: services.settings: main/cfr sync interrupted by shutdown +JavaScript error: , line 0: uncaught exception: 2147500036 +JavaScript error: , line 0: uncaught exception: 2147500036 +JavaScript error: , line 0: uncaught exception: 2147500036 +JavaScript error: , line 0: uncaught exception: 2147500036 +JavaScript error: , line 0: uncaught exception: 2147500036 +JavaScript error: , line 0: uncaught exception: 2147500036 +console.error: Region.jsm: "Failed to fetch region" (new TypeError("NetworkError when attempting to fetch resource.", "")) +1622036380855 geckodriver INFO Listening on 127.0.0.1:58071 +1622036477798 geckodriver INFO Listening on 127.0.0.1:58373 +1622036478801 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileyTrjog" +1622036482019 Marionette INFO Listening on port 33609 +1622036482112 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 +1622036486410 Marionette INFO Stopped listening on port 33609 +Exiting due to channel error. +1622036510962 geckodriver INFO Listening on 127.0.0.1:51229 +1622036511966 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0xyVMF" +JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. +console.warn: services.settings: main/cfr-fxa sync interrupted by shutdown +console.warn: services.settings: main/cfr sync interrupted by shutdown +console.warn: services.settings: main/whats-new-panel sync interrupted by shutdown +JavaScript error: , line 0: uncaught exception: 2147500036 +JavaScript error: , line 0: uncaught exception: 2147500036 +JavaScript error: , line 0: uncaught exception: 2147500036 +JavaScript error: , line 0: uncaught exception: 2147500036 +JavaScript error: , line 0: uncaught exception: 2147500036 +JavaScript error: , line 0: uncaught exception: 2147500036 +console.error: Region.jsm: "Failed to fetch region" (new TypeError("NetworkError when attempting to fetch resource.", "")) +1622036516584 geckodriver INFO Listening on 127.0.0.1:56383 +1622036517586 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCZhVdL" +JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +Exiting due to channel error. +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +Exiting due to channel error. +1622036535160 geckodriver INFO Listening on 127.0.0.1:56045 +1622036536164 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileq5RPfJ" +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +console.error: SearchEngineSelector: "Received empty search configuration!" +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: undefined, line 0: Error: An unexpected error occurred +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +console.error: SearchEngineSelector: "Received empty search configuration!" +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/SearchService.jsm, line 509: NS_ERROR_FAILURE: SearchService previously failed to initialize +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/SearchService.jsm, line 2300: NS_ERROR_FAILURE: SearchService initialization failed +JavaScript error: , line 0: uncaught exception: Object +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + QuotaExceededError +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +1622036539262 Marionette INFO Listening on port 38437 +1622036539317 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +1622036543770 Marionette INFO Stopped listening on port 38437 +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +JavaScript error: , line 0: uncaught excepti1622036544303 geckodriver INFO Listening on 127.0.0.1:53117 +1622036545306 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJAmYoI" +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.error: SearchEngineSelector: "Received empty search configuration!" +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +console.error: SearchEngineSelector: "Received empty search configuration!" +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/SearchService.jsm, line 509: NS_ERROR_FAILURE: SearchService previously failed to initialize +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/SearchService.jsm, line 2300: NS_ERROR_FAILURE: SearchService initialization failed +JavaScript error: , line 0: uncaught exception: Object +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + QuotaExceededError +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +1622036548485 Marionette INFO Listening on port 40947 +1622036548586 Marionette WARN TLS certificate errors will be ignored for this session +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement 1622036552724 geckodriver INFO Listening on 127.0.0.1:44119 +1622036553729 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileijrmVU" +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +console.error: SearchEngineSelector: "Received empty search configuration!" +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: undefined, line 0: Error: An unexpected error occurred +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +console.error: SearchEngineSelector: "Received empty search configuration!" +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/SearchService.jsm, line 509: NS_ERROR_FAILURE: SearchService previously failed to initialize +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/SearchService.jsm, line 2300: NS_ERROR_FAILURE: SearchService initialization failed +JavaScript error: , line 0: uncaught exception: Object +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + QuotaExceededError +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +1622036556506 Marionette INFO Listening on port 38459 +1622036556594 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +1622036559385 Marionette INFO Stopped listening on port 38459 +console.error: "Could not write session state file " (new Error("", "(unknown module)")) 1622036559922 geckodriver INFO Listening on 127.0.0.1:40769 +1622036560921 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileuu6j8l" +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.error: SearchEngineSelector: "Received empty search configuration!" +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: undefined, line 0: Error: An unexpected error occurred +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +console.error: SearchEngineSelector: "Received empty search configuration!" +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/SearchService.jsm, line 509: NS_ERROR_FAILURE: SearchService previously failed to initialize +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/SearchService.jsm, line 2300: NS_ERROR_FAILURE: SearchService initialization failed +JavaScript error: , line 0: uncaught exception: Object +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + QuotaExceededError +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +1622036563672 Marionette INFO Listening on port 33693 +1622036563681 Marionette WARN TLS certificate errors will be ignored for this session +console.error: Region.jsm: "Failed to fetch region" (new TypeError("NetworkError when attempting to fetch resource.", "")) +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +1622036566505 Marionette INFO Stopped listening on port 33693 +console.error: "Could not write session state file " (new Error("", "(unknown module1622036567010 geckodriver INFO Listening on 127.0.0.1:51965 +1622036568014 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebiWSif" +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.error: SearchEngineSelector: "Received empty search configuration!" +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: undefined, line 0: Error: An unexpected error occurred +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +console.error: SearchEngineSelector: "Received empty search configuration!" +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/SearchService.jsm, line 509: NS_ERROR_FAILURE: SearchService previously failed to initialize +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/SearchService.jsm, line 2300: NS_ERROR_FAILURE: SearchService initialization failed +JavaScript error: , line 0: uncaught exception: Object +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + QuotaExceededError +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +1622036570587 Marionette INFO Listening on port 44243 +1622036570664 Marionette WARN TLS certificate errors will be ignored for this session +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +JavaScript error: , line 0: uncaught exception: 2147500037 +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 1961622040027469 geckodriver INFO Listening on 127.0.0.1:49641 +1622040028471 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWwMDWx" +JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + QuotaExceededError +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +1622040031389 Marionette INFO Listening on port 38437 +1622040031445 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 +1622040032699 Marionette INFO Stopped listening on port 38437 +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +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 +1622040033302 geckodriver INFO Listening on 127.0.0.1:33365 +1622040034306 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAFMf9D" +JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + QuotaExceededError +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +1622040038801 Marionette INFO Listening on port 39161 +1622040038811 Marionette WARN TLS certificate errors will be ignored for this session +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +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 +1622040040257 Marionette INFO Stopped listening on port 39161 +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 +1622040040923 geckodriver INFO Listening on 127.0.0.1:55409 +1622040041926 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebxLRW5" +JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. +console.error: PushService: + stateChangeProcessEnqueu1622040045784 Marionette INFO Listening on port 40585 +1622040045811 Marionette WARN TLS certificate errors will be ignored for this session +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +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 +1622040047230 Marionette INFO Stopped listening on port 40585 +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 +1622040048120 geckodriver INFO Listening on 127.0.0.1:39359 +1622040049125 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerQUuLJ" +1622040063210 geckodriver INFO Listening on 127.0.0.1:37923 +1622040064215 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIlEK4f" +JavaScript error: undefined, line 0: Error: An unexpected error occurred +JavaScript error: , line 0: uncaught exception: Object +JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + QuotaExceededError +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +1622040067734 Marionette INFO Listening on port 33659 +1622040067783 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined +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 +1622040069048 Marionette INFO Stopped listening on port 33659 +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +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 +console.warn: services.settings: main/cfr-fxa sync already running +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 +JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object +1622040069601 geckodriver INFO Listening on 127.0.0.1:55659 +1622040070605 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenf6keB" +JavaScript error: undefined, line 0: Error: An unexpected error occurred +JavaScript error: , line 0: uncaught exception: Object +JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined +console.error: PushService: + stateChangeProces1622040073964 Marionette INFO Listening on port 43201 +1622040073982 Marionette WARN TLS certificate errors will be ignored for this session +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined +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 +1622040075189 Marionette INFO Stopped listening on port 43201 +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 +JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object +1622040075750 geckodriver INFO Listening on 127.0.0.1:50479 +1622040076754 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledcdXVq" +JavaScript error: undefined, line 0: Error: An unexpected error occurred +JavaScript error: , line 0: uncaught exception: Object +JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + QuotaExceededError +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +1622040080071 Marionette INFO Listening on port 41993 +1622040080127 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined +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 +1622040081289 Marionette INFO Stopped listening on port 41993 +JavaScript error: , line 0: uncaught exception: Object +console.warn: services.settings: main/cfr-fxa sync already running +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 +JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object +1622040081877 geckodriver INFO Listening on 127.0.0.1:36551 +1622040082881 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKcCnTx" +JavaScript error: undefined, line 0: Error: An unexpected error occurred +JavaScript error: , line 0: uncaught exception: Object +JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + QuotaExceededError +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded1622040086270 Marionette INFO Listening on port 45157 +1622040086345 Marionette WARN TLS certificate errors will be ignored for this session +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +1622040089009 Marionette INFO Stopped listening on port 45157 +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 +JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object +1622040089536 geckodriver INFO Listening on 127.0.0.1:59421 +1622040090540 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8DJb7O" +JavaScript error: undefined, line 0: Error: An unexpected error occurred +JavaScript error: , line 0: uncaught exception: Object +JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined +JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + QuotaExceededError +console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." +1622040093810 Marionette INFO Listening on port 44327 +1622040093821 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function +console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full +1622040096491 Marionette INFO Stopped listening on port 44327 +console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" +JavaScript error: , line 0: uncaught exception: Object +JavaScript error: , line 0: uncaugh \ No newline at end of file diff --git a/scriptexecution.sh b/scriptExecution.sh similarity index 100% rename from scriptexecution.sh rename to scriptExecution.sh