diff --git a/03_etudiant_test.py b/03_etudiant_test.py index 21cac38..c182534 100644 --- a/03_etudiant_test.py +++ b/03_etudiant_test.py @@ -1,15 +1,24 @@ import unittest import time -from setup import SCODOC_ADMIN_ID, SCODOC_ADMIN_PASS, BASE_URL, NOM_DPT +import subprocess +from setup import ( + SCODOC_ADMIN_ID, + SCODOC_ADMIN_PASS, + BASE_URL, + NOM_DPT, + LINK_SCODOC_SERVER, + BASE_NOT_SECURED_URL, +) import urllib.parse as urlparse from urllib.parse import parse_qs from selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.support import expected_conditions as EC +from selenium.common.exceptions import NoSuchElementException from selenium.webdriver.support.ui import Select, WebDriverWait from selenium.webdriver.support.select import Select -nomDPT = "AurelienUS" +URL = BASE_URL + NOM_DPT + "/Scolarite" nomEtu = "UnAutreEtudiant" prenomEtu = "Normal" nip = "11122234" @@ -19,6 +28,17 @@ paysdomicile = "Lille" class PythonOrgSearch(unittest.TestCase): + cmdProcess = ["./scriptCreationDepartement.sh", LINK_SCODOC_SERVER, NOM_DPT] + process = subprocess.Popen(cmdProcess) + process.wait() + cmdProcess = [ + "./scriptExecution.sh", + LINK_SCODOC_SERVER, + NOM_DPT, + "test_scenario1_formation.py", + ] + 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.driver = webdriver.Firefox() @@ -28,20 +48,21 @@ 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("https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc") + global URL + self.driver.get(URL) # Test : creer un etudiant et verifie si sa fiche etudiante est creee # @expected : A la soumission du formulaire on retrouve la fiche d'information avec le nip (unique) dans la page, on a également un resultat en recherchant l'étudiant def test_01_creation_etudiant(self): driver = self.driver - url = ( - "https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/" - + NOM_DPT - + "/Scolarite/etudident_create_form" - ) - driver.get(url) + global URL + driver.find_element_by_id("link_create_etudident").click() + self.wait.until(EC.url_changes(URL)) + URL = driver.current_url driver.find_element_by_id("tf_nom").send_keys(nomEtu) driver.find_element_by_id("tf_prenom").send_keys(prenomEtu) driver.find_element_by_id("tf_annee").send_keys("2021") @@ -56,12 +77,8 @@ class PythonOrgSearch(unittest.TestCase): # @expected : La création mène à une page qui affiche "code étudiant dupliqué", l'étudiant n'est pas créé def test_02_creation_etudiant_avec_meme_nip(self): driver = self.driver - url = ( - "https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/" - + nomDPT - + "/Scolarite/etudident_create_form" - ) - driver.get(url) + global URL + driver.get(URL) driver.find_element_by_id("tf_nom").send_keys(nomEtu) driver.find_element_by_id("tf_prenom").send_keys(prenomEtu) driver.find_element_by_id("tf_annee").send_keys("2021") @@ -78,17 +95,15 @@ class PythonOrgSearch(unittest.TestCase): # expected : La nouvelle adresse est mise à jour sur la page information de l'étudiant def test_03_modification_adresse_etudiant(self): driver = self.driver - url = ( - "https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/" - + nomDPT - + "/Scolarite/search_etud_in_dept" - ) - driver.get(url) - element = driver.find_element_by_name("expnom") + global URL + driver.get(URL) + element = driver.find_element_by_id("in-expnom") element.send_keys(nomEtu) element.submit() - time.sleep(1) - driver.find_element_by_id("changerCoordonneesEtudiant").click() + self.wait.until(EC.url_changes(URL)) + driver.find_element_by_xpath( + "//a[contains(@href,'formChangeCoordonnees')]" + ).click() time.sleep(1) driver.find_element_by_id("tf_domicile").send_keys(domicile) driver.find_element_by_id("tf_codepostaldomicile").send_keys(codepostaldomicile) @@ -96,31 +111,35 @@ class PythonOrgSearch(unittest.TestCase): driver.find_element_by_id("tf_submit").click() time.sleep(1) self.assertTrue( - codepostaldomicile in driver.find_element_by_id("champAdresse").text + codepostaldomicile in driver.find_element_by_id("adresse_etudiant").text ) # Test Inscription d'un étudiant dans un semestre # @expected : def test_04_inscription_etudiant(self): driver = self.driver - url = ( - "https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/" - + nomDPT - + "/Scolarite/search_etud_in_dept" - ) - driver.get(url) - element = driver.find_element_by_id("searchEtud") + global URL + driver.get(URL) + element = driver.find_element_by_id("in-expnom") element.send_keys(nomEtu) element.submit() - time.sleep(1) - driver.find_element_by_id("inscription_Etudiant").click() - time.sleep(1) - self.assertTrue("

Choisir un semestre:

" in driver.page_source) - driver.find_elements_by_id("semestreInscription")[0].click() - time.sleep(1) + self.wait.until(EC.url_changes(URL)) + driver.find_element_by_xpath( + "//a[contains(@href, 'formsemestre_inscription_with_modules_form')]" + ).click() + self.wait.until(EC.url_changes(URL)) + try: + semestres = driver.find_elements_by_xpath( + "//a[contains(@id,'inscription_Semestre_')]" + ) + print(semestres) + except NoSuchElementException: + self.assertFalse(True) + semestres[0].click() + # self.wait.until(EC.url_changes(URL)) driver.find_element_by_xpath("//input[@value='Inscrire']").click() - self.wait.until(EC.url_changes(url)) - self.assertTrue("Inscrire" in driver.page_source) + # self.wait.until(EC.url_changes(url)) + self.assertTrue("inscrit" in driver.page_source) time.sleep(1) # Test Supprime un étudiant @@ -129,7 +148,7 @@ class PythonOrgSearch(unittest.TestCase): driver = self.driver urlRecherche = ( "https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/" - + nomDPT + + NOM_DPT + "/Scolarite/search_etud_in_dept" ) driver.get(urlRecherche) @@ -140,7 +159,7 @@ class PythonOrgSearch(unittest.TestCase): etudid = driver.find_element_by_id("euid") url = ( "https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/" - + nomDPT + + NOM_DPT + "/Scolarite/etudident_delete?etudid=" + etudid.text ) diff --git a/04_modif_etudiant_test.py b/04_modif_etudiant_test.py deleted file mode 100644 index fbf9022..0000000 --- a/04_modif_etudiant_test.py +++ /dev/null @@ -1,57 +0,0 @@ -import unittest -import time -import urllib.parse as urlparse -from setup import SCODOC_ADMIN_ID,SCODOC_ADMIN_PASS,BASE_URL,NOM_DPT -from urllib.parse import parse_qs -from selenium import webdriver -from selenium.webdriver.common.keys import Keys -from selenium.webdriver.support import expected_conditions as EC -from selenium.webdriver.support.ui import Select, WebDriverWait -from selenium.webdriver.support.select import Select - -nomEtu = "UnAutreEtudiant" -prenomEtu = "Normal" -oldnip = "11122234" -newnip = "12345678" -eid = "EID1" - - -class PythonOrgSearch(unittest.TestCase): - # Permet de se connecter et se remettre sur la page d'accueil avant chaque test - def setUp(self): - self.driver = webdriver.Firefox() - self.wait = WebDriverWait(self.driver, 10) - self.driver.get( - "https://" - + SCODOC_ADMIN_ID - + ":" - + SCODOC_ADMIN_PASS - + "@scodoc-dev-iutinfo.univ-lille.fr/force_admin_authentication" - ) - self.driver.get("https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc") - - # Test changer les données d'un étudiant - # @expected : Le nip sur la page informations de l'étudiant est mis à jour - def test_changement_info_etudiant(self): - url = ( - BASE_URL - + NOM_DPT - + "/Scolarite/etudident_edit_form?etudid=" - + eid - ) - driver = self.driver - driver.get(url) - driver.find_element_by_id("tf_code_nip").clear() - driver.find_element_by_id("tf_code_nip").send_keys(newnip) - driver.find_element_by_id("tf_submit").click() - self.wait.until(EC.url_changes(url)) - time.sleep(5) - self.assertTrue(newnip in driver.page_source) - - # ferme la fenetre - def tearDown(self): - self.driver.close() - - -if __name__ == "__main__": - unittest.main() diff --git a/05_creation_absence_test.py b/05_creation_absence_test.py index 412c533..099a6fc 100644 --- a/05_creation_absence_test.py +++ b/05_creation_absence_test.py @@ -1,7 +1,7 @@ import unittest import time import urllib.parse as urlparse -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 from urllib.parse import parse_qs from selenium import webdriver from selenium.webdriver.common.keys import Keys @@ -9,15 +9,21 @@ from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.support.ui import Select, WebDriverWait from selenium.webdriver.support.select import Select -nomEtu = "UnAutreEtudiant" -prenomEtu = "Normal" -nip = "11122234" -dateDebutAbsenceJustifiee = "12/04/2021" -dateDebutAbsenceNonJustifiee = "13/04/2021" +URL = BASE_URL + NOM_DPT + "/Scolarite" class PythonOrgSearch(unittest.TestCase): - + cmdProcess = ["./scriptCreationDepartement.sh", LINK_SCODOC_SERVER, NOM_DPT] + process = subprocess.Popen(cmdProcess) + process.wait() + cmdProcess = [ + "./scriptExecution.sh", + LINK_SCODOC_SERVER, + NOM_DPT, + "test_scenario2_formation.py", + ] + 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.driver = webdriver.Firefox() @@ -27,15 +33,15 @@ 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" ) + global URL + self.driver.get(URL) driver = self.driver driver.implicitly_wait(10) - url = ( - BASE_URL - + NOM_DPT - + "/Scolarite/Absences/search_etud_in_dept" - ) + url = BASE_URL + NOM_DPT + "/Scolarite/Absences/search_etud_in_dept" driver.get(url) element = driver.find_element_by_name("expnom") element.send_keys(nomEtu) diff --git a/geckodriver.log b/geckodriver.log deleted file mode 100644 index 5772fbc..0000000 --- a/geckodriver.log +++ /dev/null @@ -1,10100 +0,0 @@ -1618217395063 geckodriver INFO Listening on 127.0.0.1:41535 -1618217396067 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWBZ3k7" -1618217401063 Marionette INFO Listening on port 33193 -1618217401131 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 208: Error: Invalid autocomplete selectedIndex -1618217403864 Marionette INFO Stopped listening on port 33193 -1618217476081 geckodriver INFO Listening on 127.0.0.1:34679 -1618217477086 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSsFdqV" -1618217480115 Marionette INFO Listening on port 33169 -1618217480156 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 208: Error: Invalid autocomplete selectedIndex -1618217481934 Marionette INFO Stopped listening on port 33169 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -console.error: (new Error("SessionFile is closed", "resource:///modules/sessionstore/SessionFile.jsm", 433)) -1618218534663 geckodriver INFO Listening on 127.0.0.1:54521 -1618218535666 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileatbjuh" -1618218539746 Marionette INFO Listening on port 36401 -1618218539800 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 96: TypeError: $(...).DataTable is not a function -1618218541163 Marionette INFO Stopped listening on port 36401 -1618218762318 geckodriver INFO Listening on 127.0.0.1:51021 -1618218763323 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDy4Cjo" -1618218766852 Marionette INFO Listening on port 41119 -1618218766901 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 208: Error: Invalid autocomplete selectedIndex -1618218768777 Marionette INFO Stopped listening on port 41119 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -Exiting due to channel error. -1618218778760 geckodriver INFO Listening on 127.0.0.1:45335 -1618218779765 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQFiAcQ" -1618218782659 Marionette INFO Listening on port 41269 -1618218782755 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 208: Error: Invalid autocomplete selectedIndex -1618218784640 Marionette INFO Stopped listening on port 41269 -console.error: (new Error("SessionFile is closed", "resource:///modules/sessionstore/SessionFile.jsm", 433)) -1618219055693 geckodriver INFO Listening on 127.0.0.1:59123 -1618219056696 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecVJQkw" -1618219059980 Marionette INFO Listening on port 39951 -1618219060074 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 96: TypeError: $(...).DataTable is not a function -1618219061389 Marionette INFO Stopped listening on port 39951 -1618219237076 geckodriver INFO Listening on 127.0.0.1:47283 -1618219238078 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCXClJ2" -1618219243010 Marionette INFO Listening on port 34457 -1618219243022 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 96: TypeError: $(...).DataTable is not a function -1618219244056 Marionette INFO Stopped listening on port 34457 -1618219562781 geckodriver INFO Listening on 127.0.0.1:33049 -1618219563785 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQcs2Pj" -1618219567660 Marionette INFO Listening on port 38465 -1618219567681 Marionette WARN TLS certificate errors will be ignored for this session -1618219568243 Marionette INFO Stopped listening on port 38465 -1618219756644 geckodriver INFO Listening on 127.0.0.1:53145 -1618219757643 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSYFG7R" -1618219761434 Marionette INFO Listening on port 34507 -1618219761528 Marionette WARN TLS certificate errors will be ignored for this session -1618219762120 Marionette INFO Stopped listening on port 34507 -1618220070017 geckodriver INFO Listening on 127.0.0.1:36909 -1618220071020 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile22jVjT" -1618220074328 Marionette INFO Listening on port 46279 -1618220074415 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 96: TypeError: $(...).DataTable is not a function -1618220075786 Marionette INFO Stopped listening on port 46279 -1618220102422 geckodriver INFO Listening on 127.0.0.1:42905 -1618220103425 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZluzAz" -1618220107322 Marionette INFO Listening on port 38407 -1618220107417 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 96: TypeError: $(...).DataTable is not a function -1618220110594 Marionette INFO Stopped listening on port 38407 -1618220125661 geckodriver INFO Listening on 127.0.0.1:46795 -1618220126663 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLUMIdM" -1618220130405 Marionette INFO Listening on port 39003 -1618220130449 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 96: TypeError: $(...).DataTable is not a function -1618220133436 Marionette INFO Stopped listening on port 39003 -1618220265712 geckodriver INFO Listening on 127.0.0.1:39535 -1618220266713 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledxwwBI" -1618220270597 Marionette INFO Listening on port 42147 -1618220270635 Marionette WARN TLS certificate errors will be ignored for this session -1618220273166 Marionette INFO Stopped listening on port 42147 -1618220351906 geckodriver INFO Listening on 127.0.0.1:36423 -1618220352910 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBee3ub" -1618220356240 Marionette INFO Listening on port 33813 -1618220356265 Marionette WARN TLS certificate errors will be ignored for this session -1618220358782 Marionette INFO Stopped listening on port 33813 -1618220374826 geckodriver INFO Listening on 127.0.0.1:38689 -1618220375830 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBaJatB" -1618220378988 Marionette INFO Listening on port 35675 -1618220379092 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 96: TypeError: $(...).DataTable is not a function -1618220382299 Marionette INFO Stopped listening on port 35675 -1618220619459 geckodriver INFO Listening on 127.0.0.1:52531 -1618220620462 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2k68K7" -1618220624800 Marionette INFO Listening on port 42845 -1618220624841 Marionette WARN TLS certificate errors will be ignored for this session -1618220627816 Marionette INFO Stopped listening on port 42845 -1618220643569 geckodriver INFO Listening on 127.0.0.1:36697 -1618220644573 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecfc8z5" -1618220648377 Marionette INFO Listening on port 38721 -1618220648391 Marionette WARN TLS certificate errors will be ignored for this session -1618220902008 geckodriver INFO Listening on 127.0.0.1:44767 -1618220902017 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFk6kuG" -1618220907530 Marionette INFO Listening on port 36235 -1618220907617 Marionette WARN TLS certificate errors will be ignored for this session -1618220911067 Marionette INFO Stopped listening on port 36235 -1618221000275 Marionette INFO Stopped listening on port 38721 -1618225636475 geckodriver INFO Listening on 127.0.0.1:35433 -1618225637480 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevCfcoQ" -1618225640609 Marionette INFO Listening on port 42609 -1618225640713 Marionette WARN TLS certificate errors will be ignored for this session -1618225653852 Marionette INFO Stopped listening on port 42609 -1618225691827 geckodriver INFO Listening on 127.0.0.1:37147 -1618225692823 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileM829DR" -1618225696327 Marionette INFO Listening on port 36759 -1618225696396 Marionette WARN TLS certificate errors will be ignored for this session -1618225696981 Marionette INFO Stopped listening on port 36759 -1618225707101 geckodriver INFO Listening on 127.0.0.1:46545 -1618225708108 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileznSIkX" -1618225712701 Marionette INFO Listening on port 40177 -1618225712748 Marionette WARN TLS certificate errors will be ignored for this session -1618225713495 Marionette INFO Stopped listening on port 40177 -Exiting due to channel error. -1618225721075 geckodriver INFO Listening on 127.0.0.1:36223 -1618225722078 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewldlBo" -1618225725499 Marionette INFO Listening on port 41045 -1618225725568 Marionette WARN TLS certificate errors will be ignored for this session -1618225726090 Marionette INFO Stopped listening on port 41045 -1618225771537 geckodriver INFO Listening on 127.0.0.1:32995 -1618225772541 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJuKrfY" -1618225776120 Marionette INFO Listening on port 36451 -1618225776140 Marionette WARN TLS certificate errors will be ignored for this session -1618225778577 Marionette INFO Stopped listening on port 36451 -1618225983258 geckodriver INFO Listening on 127.0.0.1:36663 -1618225984262 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilec2H7a7" -1618225988198 Marionette INFO Listening on port 36405 -1618225988269 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 96: TypeError: $(...).DataTable is not a function -1618225993553 Marionette INFO Stopped listening on port 36405 -1618225999158 geckodriver INFO Listening on 127.0.0.1:58673 -1618226000158 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQNusNB" -1618226004030 Marionette INFO Listening on port 36373 -1618226004139 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 96: 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." -1618226009519 Marionette INFO Stopped listening on port 36373 -1618226030542 geckodriver INFO Listening on 127.0.0.1:38269 -1618226031546 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePHsbpF" -1618226034743 Marionette INFO Listening on port 44207 -1618226034804 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 96: TypeError: $(...).DataTable is not a function -1618226038052 Marionette INFO Stopped listening on port 44207 -1618226055764 geckodriver INFO Listening on 127.0.0.1:32957 -1618226056766 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDxOXOD" -1618226060130 Marionette INFO Listening on port 35913 -1618226060161 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 96: TypeError: $(...).DataTable is not a function -1618226065533 Marionette INFO Stopped listening on port 35913 -1618226097833 geckodriver INFO Listening on 127.0.0.1:57143 -1618226098842 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFcE5JW" -1618226102574 Marionette INFO Listening on port 43941 -1618226102651 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618226108469 Marionette INFO Stopped listening on port 43941 -1618226392657 geckodriver INFO Listening on 127.0.0.1:42171 -1618226393661 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYjsPPJ" -1618226397389 Marionette INFO Listening on port 41787 -1618226397438 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618226403001 Marionette INFO Stopped listening on port 41787 -1618226435273 geckodriver INFO Listening on 127.0.0.1:40829 -1618226436277 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2fr54q" -1618226440280 Marionette INFO Listening on port 39223 -1618226440370 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618226448384 Marionette INFO Stopped listening on port 39223 -1618226484355 geckodriver INFO Listening on 127.0.0.1:36683 -1618226485360 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQYR8ap" -1618226488405 Marionette INFO Listening on port 32769 -1618226488429 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618226496468 Marionette INFO Stopped listening on port 32769 -1618226538368 geckodriver INFO Listening on 127.0.0.1:44455 -1618226539372 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileO1Q6eC" -1618226542629 Marionette INFO Listening on port 34839 -1618226542738 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618226544689 Marionette INFO Stopped listening on port 34839 -1618227544163 geckodriver INFO Listening on 127.0.0.1:33861 -1618227545168 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileblGZAT" -1618227548978 Marionette INFO Listening on port 38081 -1618227549028 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618227550796 Marionette INFO Stopped listening on port 38081 -1618227554621 geckodriver INFO Listening on 127.0.0.1:52711 -1618227555625 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3eyhhZ" -1618227559069 Marionette INFO Listening on port 36733 -1618227559107 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618227561659 Marionette INFO Stopped listening on port 36733 -1618227584564 geckodriver INFO Listening on 127.0.0.1:41687 -1618227585569 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile654yRo" -1618227589729 Marionette INFO Listening on port 42041 -1618227589767 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618227591659 Marionette INFO Stopped listening on port 42041 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1618227595509 geckodriver INFO Listening on 127.0.0.1:47517 -1618227596513 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8lD7kN" -1618227601929 Marionette INFO Listening on port 42151 -1618227601943 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618227604349 Marionette INFO Stopped listening on port 42151 -1618227773514 geckodriver INFO Listening on 127.0.0.1:40301 -1618227774518 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXmsamK" -1618227778921 Marionette INFO Listening on port 37597 -1618227779019 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618227780749 Marionette INFO Stopped listening on port 37597 -1618227781642 geckodriver INFO Listening on 127.0.0.1:57723 -1618227782646 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSBWPtT" -1618227785747 Marionette INFO Listening on port 46293 -1618227785822 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618227788202 Marionette INFO Stopped listening on port 46293 -1618227848302 geckodriver INFO Listening on 127.0.0.1:36563 -1618227849306 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQbSMDA" -1618227853301 Marionette INFO Listening on port 45885 -1618227853390 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618227855500 Marionette INFO Stopped listening on port 45885 -1618227861309 geckodriver INFO Listening on 127.0.0.1:38633 -1618227862313 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBoIXMq" -1618227865958 Marionette INFO Listening on port 39861 -1618227865992 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618227868328 Marionette INFO Stopped listening on port 39861 -1618233245655 geckodriver INFO Listening on 127.0.0.1:49605 -1618233246652 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileb56wBZ" -1618233250406 Marionette INFO Listening on port 41609 -1618233250451 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618233252476 Marionette INFO Stopped listening on port 41609 -1618233256426 geckodriver INFO Listening on 127.0.0.1:33295 -1618233257429 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRlwBEi" -1618233261045 Marionette INFO Listening on port 41129 -1618233261117 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618233263090 Marionette INFO Stopped listening on port 41129 -1618233266853 geckodriver INFO Listening on 127.0.0.1:35133 -1618233267857 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilee5XWER" -1618233271866 Marionette INFO Listening on port 33563 -1618233271943 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618233273672 Marionette INFO Stopped listening on port 33563 -1618233597897 geckodriver INFO Listening on 127.0.0.1:49949 -1618233598902 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileowVcQv" -1618233601914 Marionette INFO Listening on port 40689 -1618233601984 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618233603760 Marionette INFO Stopped listening on port 40689 -1618233609499 geckodriver INFO Listening on 127.0.0.1:50721 -1618233610502 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLqeHEs" -1618233613496 Marionette INFO Listening on port 38023 -1618233613572 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618233616111 Marionette INFO Stopped listening on port 38023 -1618233939365 geckodriver INFO Listening on 127.0.0.1:37817 -1618233940369 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilely3RY3" -1618233944075 Marionette INFO Listening on port 44615 -1618233944146 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618233945937 Marionette INFO Stopped listening on port 44615 -1618233958682 geckodriver INFO Listening on 127.0.0.1:43615 -1618233959686 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaqdTIo" -1618233963204 Marionette INFO Listening on port 35235 -1618233963255 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618233965582 Marionette INFO Stopped listening on port 35235 -1618234041643 geckodriver INFO Listening on 127.0.0.1:44379 -1618234042648 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4ZSxSz" -1618234045809 Marionette INFO Listening on port 43041 -1618234045873 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618234047596 Marionette INFO Stopped listening on port 43041 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1618234050465 geckodriver INFO Listening on 127.0.0.1:38293 -1618234051470 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3wkrS5" -1618234054631 Marionette INFO Listening on port 43155 -1618234054659 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618234056875 Marionette INFO Stopped listening on port 43155 -1618234075880 geckodriver INFO Listening on 127.0.0.1:50317 -1618234076884 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMkkO1X" -1618234080098 Marionette INFO Listening on port 37535 -1618234080170 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618234081930 Marionette INFO Stopped listening on port 37535 -1618234086707 geckodriver INFO Listening on 127.0.0.1:45949 -1618234087710 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehefJQq" -1618234090812 Marionette INFO Listening on port 37417 -1618234090886 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618234095328 Marionette INFO Stopped listening on port 37417 -1618305050066 geckodriver INFO Listening on 127.0.0.1:36767 -1618305051052 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileftP0lt" -1618305056726 Marionette INFO Listening on port 38989 -1618305056744 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618305058785 Marionette INFO Stopped listening on port 38989 -1618305068625 geckodriver INFO Listening on 127.0.0.1:46051 -1618305069631 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXRrxEU" -1618305074938 Marionette INFO Listening on port 38053 -1618305074952 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618305080059 Marionette INFO Stopped listening on port 38053 -1618553720227 geckodriver INFO Listening on 127.0.0.1:57461 -1618553721220 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefSRxPt" -1618553728869 Marionette INFO Listening on port 43293 -1618553728900 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618553762320 Marionette INFO Stopped listening on port 43293 -1618553763162 geckodriver INFO Listening on 127.0.0.1:34465 -1618553764165 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMlC11k" -1618553768255 Marionette INFO Listening on port 38111 -1618553768332 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618553771000 Marionette INFO Stopped listening on port 38111 -1618553820371 geckodriver INFO Listening on 127.0.0.1:57649 -1618553821375 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerhnyqT" -1618553826427 Marionette INFO Listening on port 38565 -1618553826538 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618553828444 Marionette INFO Stopped listening on port 38565 -1618553829480 geckodriver INFO Listening on 127.0.0.1:34919 -1618553830484 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOp16xK" -1618553834975 Marionette INFO Listening on port 37063 -1618553835075 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618553837549 Marionette INFO Stopped listening on port 37063 -1618562911005 geckodriver INFO Listening on 127.0.0.1:58813 -1618562912009 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilej0LSOe" -1618562916576 Marionette INFO Listening on port 39093 -1618562916681 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: resource://gre/actors/AutoCompleteChild.jsm, line 208: Error: Invalid autocomplete selectedIndex -1618562919161 Marionette INFO Stopped listening on port 39093 -console.error: (new Error("SessionFile is closed", "resource:///modules/sessionstore/SessionFile.jsm", 433)) -1618563030548 geckodriver INFO Listening on 127.0.0.1:58871 -1618563031552 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2L8xUb" -1618563035869 Marionette INFO Listening on port 43663 -1618563035931 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618563037929 Marionette INFO Stopped listening on port 43663 -1618564335913 geckodriver INFO Listening on 127.0.0.1:45547 -1618564336917 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUJyLz5" -1618564341016 Marionette INFO Listening on port 45481 -1618564341093 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618564353916 Marionette INFO Stopped listening on port 45481 -1618564476983 geckodriver INFO Listening on 127.0.0.1:52833 -1618564477989 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileG7Avt5" -1618564482670 Marionette INFO Listening on port 45999 -1618564482755 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618564485646 Marionette INFO Stopped listening on port 45999 -1618564584288 geckodriver INFO Listening on 127.0.0.1:48809 -1618564585291 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOGMcs9" -1618564588787 Marionette INFO Listening on port 42733 -1618564588876 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618564600139 Marionette INFO Stopped listening on port 42733 -1618564622072 geckodriver INFO Listening on 127.0.0.1:36109 -1618564623076 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelItMCw" -1618564626116 Marionette INFO Listening on port 42635 -1618564626166 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618564629324 Marionette INFO Stopped listening on port 42635 -1618564652661 geckodriver INFO Listening on 127.0.0.1:51193 -1618564653647 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoudsrO" -1618564656707 Marionette INFO Listening on port 35157 -1618564656722 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618564662318 Marionette INFO Stopped listening on port 35157 -1618564684425 geckodriver INFO Listening on 127.0.0.1:46941 -1618564685436 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexM5Ah4" -1618564689959 Marionette INFO Listening on port 45917 -1618564689965 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618564692967 Marionette INFO Stopped listening on port 45917 -1618564761307 geckodriver INFO Listening on 127.0.0.1:35405 -1618564762311 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDySJGf" -1618564765292 Marionette INFO Listening on port 42799 -1618564765400 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618564773416 Marionette INFO Stopped listening on port 42799 -1618564855107 geckodriver INFO Listening on 127.0.0.1:35275 -1618564856112 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIw6txG" -1618564859220 Marionette INFO Listening on port 45647 -1618564859276 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618564867029 Marionette INFO Stopped listening on port 45647 -1618565042901 geckodriver INFO Listening on 127.0.0.1:34195 -1618565043905 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilei48aJV" -1618565047074 Marionette INFO Listening on port 39741 -1618565047182 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618565055056 Marionette INFO Stopped listening on port 39741 -1618571494442 geckodriver INFO Listening on 127.0.0.1:34243 -1618571495446 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile11tLoE" -1618571498868 Marionette INFO Listening on port 39121 -1618571498882 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618571583037 geckodriver INFO Listening on 127.0.0.1:50417 -1618571584041 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFJWXVy" -1618571589388 Marionette INFO Listening on port 42941 -1618571589459 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618571599021 geckodriver INFO Listening on 127.0.0.1:58261 -1618571600025 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileesWjDr" -1618571604522 Marionette INFO Listening on port 45277 -1618571604572 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618571615212 Marionette INFO Stopped listening on port 45277 -1618571628126 Marionette INFO Stopped listening on port 42941 -1618573710735 geckodriver INFO Listening on 127.0.0.1:41475 -1618573711739 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4Vhjmf" -1618573715091 Marionette INFO Listening on port 33385 -1618573715100 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618573717281 Marionette INFO Stopped listening on port 33385 -1618573751747 geckodriver INFO Listening on 127.0.0.1:43909 -1618573752756 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKqtVpi" -1618573760123 Marionette INFO Listening on port 33957 -1618573760214 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618573773628 Marionette INFO Stopped listening on port 33957 -1618573784778 geckodriver INFO Listening on 127.0.0.1:57569 -1618573785784 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAMjGBT" -1618573791319 Marionette INFO Listening on port 43183 -1618573791412 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 96: TypeError: $(...).DataTable is not a function -1618573793375 Marionette INFO Stopped listening on port 39121 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618573794372 Marionette INFO Stopped listening on port 43183 -1618573811739 geckodriver INFO Listening on 127.0.0.1:57183 -1618573812743 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilead6iUC" -1618573816944 Marionette INFO Listening on port 46233 -1618573817015 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618573819442 Marionette INFO Stopped listening on port 46233 -1618573845549 geckodriver INFO Listening on 127.0.0.1:36741 -1618573846553 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1wfXYx" -1618573849750 Marionette INFO Listening on port 33689 -1618573849853 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 96: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 96: TypeError: $(...).DataTable is not a function -1618573858484 Marionette INFO Stopped listening on port 33689 -1618822590075 geckodriver INFO Listening on 127.0.0.1:56437 -1618822591092 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejGk2r2" -1618822598910 Marionette INFO Listening on port 34115 -1618822598961 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 -1618822601628 Marionette INFO Stopped listening on port 34115 -1618822615076 geckodriver INFO Listening on 127.0.0.1:60287 -1618822616083 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilec51zTt" -1618822620474 Marionette INFO Listening on port 40489 -1618822620504 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 -1618822632951 Marionette INFO Stopped listening on port 40489 -1618823136602 geckodriver INFO Listening on 127.0.0.1:33971 -1618823137606 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileuyvXV5" -1618823142446 Marionette INFO Listening on port 37343 -1618823142519 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 -1618823144416 Marionette INFO Stopped listening on port 37343 -1618823325688 geckodriver INFO Listening on 127.0.0.1:44857 -1618823326692 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledlkSbS" -1618823330782 Marionette INFO Listening on port 41213 -1618823330809 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 -1618823333403 Marionette INFO Stopped listening on port 41213 -1618823374051 geckodriver INFO Listening on 127.0.0.1:46999 -1618823375058 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJzwMs6" -1618823380571 Marionette INFO Listening on port 46607 -1618823380672 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 -1618823388960 Marionette INFO Stopped listening on port 46607 -1618824081958 geckodriver INFO Listening on 127.0.0.1:45443 -1618824082964 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNgxUb5" -1618824087734 Marionette INFO Listening on port 43665 -1618824087818 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 -1618824102565 Marionette INFO Stopped listening on port 43665 -1618824149790 geckodriver INFO Listening on 127.0.0.1:53327 -1618824150795 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileue2VKD" -1618824156395 Marionette INFO Listening on port 35807 -1618824156466 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 -1618824164651 Marionette INFO Stopped listening on port 35807 -1618824691928 geckodriver INFO Listening on 127.0.0.1:57853 -1618824692933 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4vpa1a" -1618824698230 Marionette INFO Listening on port 43507 -1618824698271 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 -1618824706850 Marionette INFO Stopped listening on port 43507 -1618824901258 geckodriver INFO Listening on 127.0.0.1:54337 -1618824902265 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilei2yjp0" -1618824907471 Marionette INFO Listening on port 36253 -1618824907482 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 -1618824916477 Marionette INFO Stopped listening on port 36253 -1618824986732 geckodriver INFO Listening on 127.0.0.1:33325 -1618824987741 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiFpMeC" -1618824992655 Marionette INFO Listening on port 42853 -1618824992691 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 -1618825006003 Marionette INFO Stopped listening on port 42853 -1618825013849 geckodriver INFO Listening on 127.0.0.1:34343 -1618825014859 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekYpE1t" -1618825022144 Marionette INFO Listening on port 33815 -1618825022263 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 -1618825035367 Marionette INFO Stopped listening on port 33815 -1618825041537 geckodriver INFO Listening on 127.0.0.1:47407 -1618825042532 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIv73FF" -1618825047528 Marionette INFO Listening on port 45851 -1618825047575 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 -1618825061205 Marionette INFO Stopped listening on port 45851 -1618825178315 geckodriver INFO Listening on 127.0.0.1:42305 -1618825179331 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebTz44X" -1618825184274 Marionette INFO Listening on port 34911 -1618825184407 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 -1618825198222 Marionette INFO Stopped listening on port 34911 -1618825238068 geckodriver INFO Listening on 127.0.0.1:56367 -1618825239073 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileuHnXEI" -1618825244207 Marionette INFO Listening on port 44007 -1618825244252 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 -1618825257382 Marionette INFO Stopped listening on port 44007 -1618825267117 geckodriver INFO Listening on 127.0.0.1:39611 -1618825268114 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZcMQ9Z" -1618825272105 Marionette INFO Listening on port 37435 -1618825272204 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 -1618825285237 Marionette INFO Stopped listening on port 37435 -1618825327937 geckodriver INFO Listening on 127.0.0.1:39107 -1618825328950 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePrWQrc" -1618825336177 Marionette INFO Listening on port 41957 -1618825336220 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 -1618825341674 Marionette INFO Stopped listening on port 41957 -1618825345608 geckodriver INFO Listening on 127.0.0.1:43473 -1618825346614 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileho3ALL" -1618825351109 Marionette INFO Listening on port 43631 -1618825351193 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 -1618825356977 Marionette INFO Stopped listening on port 43631 -1618825905909 geckodriver INFO Listening on 127.0.0.1:44085 -1618825906924 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegJOPS7" -1618825917289 Marionette INFO Listening on port 44633 -1618825917311 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 -1618825922795 Marionette INFO Stopped listening on port 44633 -1618825927093 geckodriver INFO Listening on 127.0.0.1:47797 -1618825928098 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKtZk2q" -1618825935640 Marionette INFO Listening on port 45263 -1618825935707 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 -1618825942590 Marionette INFO Stopped listening on port 45263 -1618832744262 geckodriver INFO Listening on 127.0.0.1:44109 -1618832745274 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQZdweB" -1618832751712 Marionette INFO Listening on port 35715 -1618832751754 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 -1618832757365 Marionette INFO Stopped listening on port 35715 -1618832763250 geckodriver INFO Listening on 127.0.0.1:54795 -1618832764255 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLUFJS1" -1618832768917 Marionette INFO Listening on port 34437 -1618832769029 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 -1618832775852 Marionette INFO Stopped listening on port 34437 -1618832781787 geckodriver INFO Listening on 127.0.0.1:58237 -1618832782788 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6FFaqD" -1618832788633 Marionette INFO Listening on port 37991 -1618832788731 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 -1618832790714 Marionette INFO Stopped listening on port 37991 -1618832962669 geckodriver INFO Listening on 127.0.0.1:41433 -1618832963681 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilez4TjOA" -1618832970643 Marionette INFO Listening on port 39051 -1618832970747 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 -1618832976246 Marionette INFO Stopped listening on port 39051 -1618832982110 geckodriver INFO Listening on 127.0.0.1:57097 -1618832983113 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexstm7W" -1618832987632 Marionette INFO Listening on port 35821 -1618832987709 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 -1618832992818 Marionette INFO Stopped listening on port 35821 -1618832998698 geckodriver INFO Listening on 127.0.0.1:52959 -1618832999697 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilez9nZgw" -1618833003782 Marionette INFO Listening on port 33639 -1618833003810 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 -1618833005696 Marionette INFO Stopped listening on port 33639 -1618833085313 geckodriver INFO Listening on 127.0.0.1:44181 -1618833086325 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiLsqgj" -1618833092629 Marionette INFO Listening on port 44221 -1618833092746 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 -1618833094469 geckodriver INFO Listening on 127.0.0.1:39203 -1618833095468 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile27yx3B" -1618833102266 Marionette INFO Listening on port 35697 -1618833102286 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 -1618833104411 geckodriver INFO Listening on 127.0.0.1:44239 -1618833105426 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilef04YIT" -1618833113272 Marionette INFO Listening on port 45625 -1618833113384 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 -1618833115461 geckodriver INFO Listening on 127.0.0.1:58937 -1618833116465 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileyiDK2W" -1618833121419 Marionette INFO Listening on port 37959 -1618833121507 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 -1618833128570 Marionette INFO Stopped listening on port 37959 -1618833134566 geckodriver INFO Listening on 127.0.0.1:37967 -1618833135568 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerDZzeY" -1618833137984 Marionette INFO Stopped listening on port 45625 -console.warn: services.settings: main/fxmonitor-breaches sync interrupted by shutdown -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.", "")) -1618833144080 geckodriver INFO Listening on 127.0.0.1:34727 -1618833145083 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLJeo5P" -1618833151778 Marionette INFO Listening on port 41047 -1618833151915 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 -1618833156196 Marionette INFO Stopped listening on port 41047 -1618833282155 geckodriver INFO Listening on 127.0.0.1:39095 -1618833283158 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileyxwRZE" -1618833288765 Marionette INFO Listening on port 38015 -1618833288800 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 -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 -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 -1618833339328 geckodriver INFO Listening on 127.0.0.1:39057 -1618833340333 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYCkhoE" -1618833347325 Marionette INFO Listening on port 33009 -1618833347447 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 -1618833353674 Marionette INFO Stopped listening on port 33009 -1618833419893 geckodriver INFO Listening on 127.0.0.1:56941 -1618833420896 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXpIf2p" -1618833426807 Marionette INFO Listening on port 43101 -1618833426830 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 -1618833432476 Marionette INFO Stopped listening on port 43101 -1618833437645 geckodriver INFO Listening on 127.0.0.1:43633 -1618833438648 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileq1n5jP" -1618833443981 Marionette INFO Listening on port 41919 -1618833444085 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 -1618833449599 Marionette INFO Stopped listening on port 41919 -1618833553922 geckodriver INFO Listening on 127.0.0.1:58989 -1618833554916 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQUzJyy" -1618833561878 Marionette INFO Listening on port 42193 -1618833561928 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 -1618833566398 geckodriver INFO Listening on 127.0.0.1:56979 -1618833567394 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKGUtik" -1618833576704 Marionette INFO Listening on port 38955 -1618833576802 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 -1618834170596 geckodriver INFO Listening on 127.0.0.1:41855 -1618834171593 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePPZKep" -1618834178242 Marionette INFO Listening on port 42751 -1618834178316 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 -1618834183530 Marionette INFO Stopped listening on port 42751 -1618834184677 geckodriver INFO Listening on 127.0.0.1:50491 -1618834185669 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoVgYmH" -1618834190043 Marionette INFO Listening on port 35523 -1618834190126 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 -1618834194928 Marionette INFO Stopped listening on port 35523 -1618834248585 geckodriver INFO Listening on 127.0.0.1:43517 -1618834249590 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVBSCx5" -1618834257527 Marionette INFO Listening on port 42597 -1618834257617 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 -1618834262735 Marionette INFO Stopped listening on port 42597 -1618834269049 geckodriver INFO Listening on 127.0.0.1:55037 -1618834270046 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewbYPbW" -1618834274889 Marionette INFO Listening on port 39303 -1618834274948 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 -1618834279780 Marionette INFO Stopped listening on port 39303 -1618834287666 geckodriver INFO Listening on 127.0.0.1:47277 -1618834288670 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaqZU2Q" -1618834293387 Marionette INFO Listening on port 45063 -1618834293430 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 -1618834298253 Marionette INFO Stopped listening on port 45063 -1618834337400 Marionette INFO Stopped listening on port 38955 -1618834337973 Marionette INFO Stopped listening on port 42193 -1618834338534 Marionette INFO Stopped listening on port 38015 -1618834339065 Marionette INFO Stopped listening on port 35697 -1618834339604 Marionette INFO Stopped listening on port 44221 -1618834427198 geckodriver INFO Listening on 127.0.0.1:55471 -1618834428205 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTU3kft" -1618834432973 Marionette INFO Listening on port 42271 -1618834433069 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 -1618834438428 Marionette INFO Stopped listening on port 42271 -1618834444413 geckodriver INFO Listening on 127.0.0.1:45263 -1618834445416 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilen2ZEXt" -1618834450163 Marionette INFO Listening on port 42439 -1618834450248 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 -1618834454999 Marionette INFO Stopped listening on port 42439 -1618834460871 geckodriver INFO Listening on 127.0.0.1:47039 -1618834461875 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileucf3te" -1618834466527 Marionette INFO Listening on port 42541 -1618834466584 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 -1618834471698 Marionette INFO Stopped listening on port 42541 -1618834592640 geckodriver INFO Listening on 127.0.0.1:39243 -1618834593652 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4P0s3c" -1618834598445 Marionette INFO Listening on port 45511 -1618834598495 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 -1618834603761 Marionette INFO Stopped listening on port 45511 -1618834606810 geckodriver INFO Listening on 127.0.0.1:49155 -1618834607814 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefOTR3x" -1618834612019 Marionette INFO Listening on port 42909 -1618834612116 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 -1618834616752 Marionette INFO Stopped listening on port 42909 -1618834622457 geckodriver INFO Listening on 127.0.0.1:49601 -1618834623460 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileg7P0tT" -1618834627602 Marionette INFO Listening on port 46549 -1618834627659 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 -1618834632316 Marionette INFO Stopped listening on port 46549 -1618834714079 geckodriver INFO Listening on 127.0.0.1:52435 -1618834715084 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOVB0Cg" -1618834719876 Marionette INFO Listening on port 39165 -1618834719970 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 -1618834724847 Marionette INFO Stopped listening on port 39165 -1618834730725 geckodriver INFO Listening on 127.0.0.1:36681 -1618834731729 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSNy2fn" -1618834735964 Marionette INFO Listening on port 41109 -1618834736027 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 -1618834740816 Marionette INFO Stopped listening on port 41109 -1618834746666 geckodriver INFO Listening on 127.0.0.1:60145 -1618834747669 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileg68P0F" -1618834751717 Marionette INFO Listening on port 41945 -1618834751793 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 -1618834758062 Marionette INFO Stopped listening on port 41945 -1618834911441 geckodriver INFO Listening on 127.0.0.1:48769 -1618834911457 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletrYgG6" -1618834916323 Marionette INFO Listening on port 43609 -1618834916395 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 -1618834921554 Marionette INFO Stopped listening on port 43609 -1618834924616 geckodriver INFO Listening on 127.0.0.1:55155 -1618834925620 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTdnh16" -1618834931908 Marionette INFO Listening on port 45139 -1618834931963 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 -1618834936776 Marionette INFO Stopped listening on port 45139 -1618834940585 geckodriver INFO Listening on 127.0.0.1:36151 -1618834941588 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRRxszP" -1618834945796 Marionette INFO Listening on port 40373 -1618834945820 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 -1618834949792 Marionette INFO Stopped listening on port 40373 -1618834953731 geckodriver INFO Listening on 127.0.0.1:34227 -1618834954734 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRCwpio" -1618834958941 Marionette INFO Listening on port 44493 -1618834958976 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 -1618834964976 Marionette INFO Stopped listening on port 44493 -1618838054250 geckodriver INFO Listening on 127.0.0.1:43411 -1618838055260 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesD04c8" -1618838060869 Marionette INFO Listening on port 41231 -1618838060925 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 -1618838065935 Marionette INFO Stopped listening on port 41231 -1618838071993 geckodriver INFO Listening on 127.0.0.1:59575 -1618838073001 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledWyniS" -1618838078226 Marionette INFO Listening on port 40975 -1618838078283 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 -1618838082970 Marionette INFO Stopped listening on port 40975 -1618838088800 geckodriver INFO Listening on 127.0.0.1:56291 -1618838089804 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile62TCkE" -1618838094199 Marionette INFO Listening on port 33153 -1618838094229 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 -1618838099328 Marionette INFO Stopped listening on port 33153 -1618838105212 geckodriver INFO Listening on 127.0.0.1:39645 -1618838106216 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilej4Gfav" -1618838111510 Marionette INFO Listening on port 34079 -1618838111543 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 -1618838115212 Marionette INFO Stopped listening on port 34079 -1618838120235 geckodriver INFO Listening on 127.0.0.1:39989 -1618838121238 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeyJVjm" -1618838125224 Marionette INFO Listening on port 42485 -1618838125327 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 -1618838131300 Marionette INFO Stopped listening on port 42485 -1618838475651 geckodriver INFO Listening on 127.0.0.1:33985 -1618838476655 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6M7Fzx" -1618838482513 Marionette INFO Listening on port 40753 -1618838482530 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 -1618838489448 Marionette INFO Stopped listening on port 40753 -1618838494476 geckodriver INFO Listening on 127.0.0.1:47547 -1618838495481 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9sXhlK" -1618838499876 Marionette INFO Listening on port 37989 -1618838499895 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 -1618838506580 Marionette INFO Stopped listening on port 37989 -1618838511447 geckodriver INFO Listening on 127.0.0.1:47901 -1618838512451 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileq5Rb2O" -1618838516717 Marionette INFO Listening on port 46037 -1618838516758 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 -1618838523960 Marionette INFO Stopped listening on port 46037 -1618838527872 geckodriver INFO Listening on 127.0.0.1:51389 -1618838528877 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0av5AG" -1618838532936 Marionette INFO Listening on port 36267 -1618838532973 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 -1618838538451 Marionette INFO Stopped listening on port 36267 -1618838544567 geckodriver INFO Listening on 127.0.0.1:43647 -1618838545576 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCRKaVh" -1618838552073 Marionette INFO Listening on port 34925 -1618838552121 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 -1618838559193 Marionette INFO Stopped listening on port 34925 -1618838560865 geckodriver INFO Listening on 127.0.0.1:43643 -1618838561869 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileE1PwKt" -1618838569065 Marionette INFO Listening on port 33413 -1618838569291 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 -1618838573525 geckodriver INFO Listening on 127.0.0.1:50619 -1618838574532 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileh9ieIB" -1618838578057 Marionette INFO Stopped listening on port 33413 -1618838579136 Marionette INFO Listening on port 41583 -1618838579186 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 -1618838584942 Marionette INFO Stopped listening on port 41583 -1618838593881 geckodriver INFO Listening on 127.0.0.1:43421 -1618838594885 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTTTGKt" -1618838599008 Marionette INFO Listening on port 42397 -1618838599093 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 -1618838606855 Marionette INFO Stopped listening on port 42397 -1618839443621 geckodriver INFO Listening on 127.0.0.1:45561 -1618839444626 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileB9C1aG" -1618839449214 Marionette INFO Listening on port 35235 -1618839449311 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 -1618839454473 Marionette INFO Stopped listening on port 35235 -1618839464386 geckodriver INFO Listening on 127.0.0.1:50987 -1618839465389 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1PVnIl" -1618839469574 Marionette INFO Listening on port 34781 -1618839469632 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 -1618839474412 Marionette INFO Stopped listening on port 34781 -1618839479283 geckodriver INFO Listening on 127.0.0.1:43355 -1618839480287 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9BkEGS" -1618839484448 Marionette INFO Listening on port 41617 -1618839484533 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 -1618839489518 Marionette INFO Stopped listening on port 41617 -1618839495365 geckodriver INFO Listening on 127.0.0.1:35777 -1618839496370 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRytycY" -1618839500546 Marionette INFO Listening on port 38695 -1618839500563 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 -1618839504118 Marionette INFO Stopped listening on port 38695 -1618839510090 geckodriver INFO Listening on 127.0.0.1:51095 -1618839511094 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileb50Yxk" -1618839515359 Marionette INFO Listening on port 36271 -1618839515463 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 -1618839519094 Marionette INFO Stopped listening on port 36271 -1618839525118 geckodriver INFO Listening on 127.0.0.1:44427 -1618839526125 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXIbkiJ" -1618839530346 Marionette INFO Listening on port 38629 -1618839530429 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 -1618839533930 Marionette INFO Stopped listening on port 38629 -1618839539835 geckodriver INFO Listening on 127.0.0.1:57959 -1618839540841 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileW3vW7d" -1618839545221 Marionette INFO Listening on port 33685 -1618839545250 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 -1618839548785 Marionette INFO Stopped listening on port 33685 -1618839554777 geckodriver INFO Listening on 127.0.0.1:60225 -1618839555782 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileO7cATw" -1618839560044 Marionette INFO Listening on port 32877 -1618839560124 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 -1618839567869 Marionette INFO Stopped listening on port 32877 -1618839939538 geckodriver INFO Listening on 127.0.0.1:52893 -1618839940545 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKaUQKY" -1618839947155 Marionette INFO Listening on port 42889 -1618839947237 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 -1618839952534 Marionette INFO Stopped listening on port 42889 -1618839956622 geckodriver INFO Listening on 127.0.0.1:60877 -1618839957627 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepxlv2J" -1618839962388 Marionette INFO Listening on port 40097 -1618839962440 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 -1618839967678 Marionette INFO Stopped listening on port 40097 -1618839968862 geckodriver INFO Listening on 127.0.0.1:46319 -1618839969866 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecXKZRU" -1618839974662 Marionette INFO Listening on port 46779 -1618839974774 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 -1618839979888 Marionette INFO Stopped listening on port 46779 -1618839985759 geckodriver INFO Listening on 127.0.0.1:60707 -1618839986765 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileskO0l6" -1618839991307 Marionette INFO Listening on port 43963 -1618839991395 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 -1618839999945 Marionette INFO Stopped listening on port 43963 -1618840011160 geckodriver INFO Listening on 127.0.0.1:46267 -1618840012165 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeV1UFJ" -1618840016865 Marionette INFO Listening on port 41819 -1618840016909 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 -1618840022270 Marionette INFO Stopped listening on port 41819 -1618840028313 geckodriver INFO Listening on 127.0.0.1:44925 -1618840029317 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile31CfVo" -1618840034610 Marionette INFO Listening on port 39405 -1618840034711 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 -1618840040554 Marionette INFO Stopped listening on port 39405 -1618840047829 geckodriver INFO Listening on 127.0.0.1:52583 -1618840048927 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSewY0O" -1618840056374 Marionette INFO Listening on port 44119 -1618840056423 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 -1618840062787 Marionette INFO Stopped listening on port 44119 -1618840068747 geckodriver INFO Listening on 127.0.0.1:52991 -1618840069756 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMhChok" -1618840075469 Marionette INFO Listening on port 35459 -1618840075599 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 -1618840085209 Marionette INFO Stopped listening on port 35459 -1618840163529 geckodriver INFO Listening on 127.0.0.1:54637 -1618840164535 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4zS0Rg" -1618840168042 Marionette INFO Listening on port 43991 -1618840168134 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 -1618840173395 Marionette INFO Stopped listening on port 43991 -1618840177282 geckodriver INFO Listening on 127.0.0.1:55281 -1618840178288 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLuYXXo" -1618840181744 Marionette INFO Listening on port 33271 -1618840181781 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 -1618840186677 Marionette INFO Stopped listening on port 33271 -1618840189459 geckodriver INFO Listening on 127.0.0.1:56067 -1618840190462 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemx5vGE" -1618840193874 Marionette INFO Listening on port 44279 -1618840193948 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 -1618840198996 Marionette INFO Stopped listening on port 44279 -1618840208743 geckodriver INFO Listening on 127.0.0.1:54251 -1618840209752 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYPtwx3" -1618840213407 Marionette INFO Listening on port 36527 -1618840213455 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 -1618840221400 Marionette INFO Stopped listening on port 36527 -1618840266817 geckodriver INFO Listening on 127.0.0.1:43023 -1618840267820 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJc6YRB" -1618840271407 Marionette INFO Listening on port 35247 -1618840271496 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 -1618840276729 Marionette INFO Stopped listening on port 35247 -1618840284763 geckodriver INFO Listening on 127.0.0.1:58649 -1618840285767 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZDWvK9" -1618840290503 Marionette INFO Listening on port 33751 -1618840290583 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 -1618840296233 Marionette INFO Stopped listening on port 33751 -1618840299150 geckodriver INFO Listening on 127.0.0.1:59573 -1618840300155 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilet46yKX" -1618840304004 Marionette INFO Listening on port 39703 -1618840304047 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 -1618840314422 Marionette INFO Stopped listening on port 39703 -1618840318286 geckodriver INFO Listening on 127.0.0.1:49935 -1618840319290 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezPJZyA" -1618840325375 Marionette INFO Listening on port 34613 -1618840325459 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 -1618840339469 Marionette INFO Stopped listening on port 34613 -1618840355246 geckodriver INFO Listening on 127.0.0.1:59439 -1618840356253 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebrsZLD" -1618840362368 Marionette INFO Listening on port 33295 -1618840362459 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 -1618840367449 Marionette INFO Stopped listening on port 33295 -1618840373317 geckodriver INFO Listening on 127.0.0.1:44553 -1618840374318 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilez0JP3Y" -1618840377817 Marionette INFO Listening on port 33763 -1618840377901 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 -1618840382797 Marionette INFO Stopped listening on port 33763 -1618840388608 geckodriver INFO Listening on 127.0.0.1:40519 -1618840389612 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiler0GeFp" -1618840393068 Marionette INFO Listening on port 41737 -1618840393097 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 -1618840403519 Marionette INFO Stopped listening on port 41737 -1618840409198 geckodriver INFO Listening on 127.0.0.1:45887 -1618840410203 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewHS19W" -1618840413698 Marionette INFO Listening on port 34929 -1618840413794 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 -1618840427633 Marionette INFO Stopped listening on port 34929 -1618840433877 geckodriver INFO Listening on 127.0.0.1:35119 -1618840434881 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJw8hbC" -1618840457491 geckodriver INFO Listening on 127.0.0.1:36861 -1618840458494 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9xPHmb" -1618840461955 Marionette INFO Listening on port 34127 -1618840461983 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 -1618840467189 Marionette INFO Stopped listening on port 34127 -1618840471166 geckodriver INFO Listening on 127.0.0.1:49263 -1618840472170 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQyx988" -1618840475596 Marionette INFO Listening on port 41539 -1618840475681 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 -1618840480614 Marionette INFO Stopped listening on port 41539 -1618840491018 geckodriver INFO Listening on 127.0.0.1:45631 -1618840492015 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNB5fOu" -1618840495606 Marionette INFO Listening on port 34973 -1618840495645 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 -1618840506053 Marionette INFO Stopped listening on port 34973 -1618840511871 geckodriver INFO Listening on 127.0.0.1:44197 -1618840512877 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilektdf3c" -1618840518091 Marionette INFO Listening on port 40805 -1618840518182 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 -1618840533234 Marionette INFO Stopped listening on port 40805 -1618840542971 geckodriver INFO Listening on 127.0.0.1:36159 -1618840543977 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehPbXfk" -1618840547429 Marionette INFO Listening on port 35383 -1618840547458 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 -1618840552680 Marionette INFO Stopped listening on port 35383 -1618840558496 geckodriver INFO Listening on 127.0.0.1:38399 -1618840559501 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3DuhQb" -1618840562888 Marionette INFO Listening on port 37317 -1618840562992 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 -1618840568897 Marionette INFO Stopped listening on port 37317 -1618840580790 geckodriver INFO Listening on 127.0.0.1:39125 -1618840581796 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepxjlzh" -1618840585264 Marionette INFO Listening on port 45613 -1618840585305 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 -1618840595819 Marionette INFO Stopped listening on port 45613 -1618840605456 geckodriver INFO Listening on 127.0.0.1:36157 -1618840606461 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileu5EVWu" -1618840609902 Marionette INFO Listening on port 33995 -1618840609945 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 -1618840622791 Marionette INFO Stopped listening on port 33995 -1618840642495 geckodriver INFO Listening on 127.0.0.1:43151 -1618840643501 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile03Nibj" -1618840647125 Marionette INFO Listening on port 33807 -1618840647194 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 -1618840652333 Marionette INFO Stopped listening on port 33807 -1618840657283 geckodriver INFO Listening on 127.0.0.1:46939 -1618840658289 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZMcLPn" -1618840661834 Marionette INFO Listening on port 45495 -1618840661889 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 -1618840666836 Marionette INFO Stopped listening on port 45495 -1618840672703 geckodriver INFO Listening on 127.0.0.1:39265 -1618840673706 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLOkVwO" -1618840677157 Marionette INFO Listening on port 37205 -1618840677213 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 -1618840687711 Marionette INFO Stopped listening on port 37205 -1618840696417 geckodriver INFO Listening on 127.0.0.1:51999 -1618840697426 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTRuhdV" -1618840700922 Marionette INFO Listening on port 44539 -1618840701021 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 -1618840713849 Marionette INFO Stopped listening on port 44539 -1618899281747 geckodriver INFO Listening on 127.0.0.1:58851 -1618899282740 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewyzoZW" -1618899288021 Marionette INFO Listening on port 33687 -1618899288096 Marionette WARN TLS certificate errors will be ignored for this session -1618899305599 geckodriver INFO Listening on 127.0.0.1:41601 -1618899306082 Marionette INFO Stopped listening on port 33687 -1618899306604 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2Ei70S" -1618899310686 Marionette INFO Listening on port 44215 -1618899310704 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 -1618899312982 Marionette INFO Stopped listening on port 44215 -1618899321845 geckodriver INFO Listening on 127.0.0.1:58717 -1618899322848 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileU93Tdp" -1618899327033 Marionette INFO Listening on port 35945 -1618899327136 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 -1618899329022 Marionette INFO Stopped listening on port 35945 -1618899334998 geckodriver INFO Listening on 127.0.0.1:35363 -1618899335993 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6FW06m" -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.", "")) -1618899342868 geckodriver INFO Listening on 127.0.0.1:49835 -1618899343872 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileg3sSpt" -1618899347009 Marionette INFO Listening on port 41999 -1618899347050 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 -1618899350645 Marionette INFO Stopped listening on port 41999 -1618899359372 geckodriver INFO Listening on 127.0.0.1:37439 -1618899360376 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTiIsWN" -1618899363489 Marionette INFO Listening on port 37987 -1618899363526 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 -1618899366797 Marionette INFO Stopped listening on port 37987 -1618899371627 geckodriver INFO Listening on 127.0.0.1:49155 -1618899372632 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepV5ecE" -1618899375843 Marionette INFO Listening on port 43357 -1618899375902 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 -1618899380747 Marionette INFO Stopped listening on port 43357 -1618899384578 geckodriver INFO Listening on 127.0.0.1:34841 -1618899385582 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelP0l2T" -1618899389210 Marionette INFO Listening on port 38289 -1618899389237 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 -1618899394011 Marionette INFO Stopped listening on port 38289 -1618899398075 geckodriver INFO Listening on 127.0.0.1:34395 -1618899399080 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeOdoVz" -1618899403684 Marionette INFO Listening on port 37757 -1618899403774 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 -1618899407362 Marionette INFO Stopped listening on port 37757 -1618899413296 geckodriver INFO Listening on 127.0.0.1:49245 -1618899414300 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4V62Yd" -1618899418079 Marionette INFO Listening on port 33893 -1618899418130 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 -1618899421450 Marionette INFO Stopped listening on port 33893 -1618899427140 geckodriver INFO Listening on 127.0.0.1:37917 -1618899428144 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9OKIHF" -1618899431190 Marionette INFO Listening on port 35449 -1618899431210 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 -1618899436241 Marionette INFO Stopped listening on port 35449 -1618899441894 geckodriver INFO Listening on 127.0.0.1:54365 -1618899442898 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletrgkqY" -1618899446359 Marionette INFO Listening on port 38975 -1618899446382 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 -1618899454610 Marionette INFO Stopped listening on port 38975 -1618899568260 geckodriver INFO Listening on 127.0.0.1:36763 -1618899569264 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileISBRkk" -1618899572864 Marionette INFO Listening on port 45621 -1618899572942 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 -1618899576041 Marionette INFO Stopped listening on port 45621 -1618899580776 geckodriver INFO Listening on 127.0.0.1:54183 -1618899581779 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0mb4Qr" -1618899585330 Marionette INFO Listening on port 40701 -1618899585377 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 -1618899588521 Marionette INFO Stopped listening on port 40701 -1618899594578 geckodriver INFO Listening on 127.0.0.1:36425 -1618899595567 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaEGEgC" -console.warn: services.settings: main/fxmonitor-breaches sync interrupted by shutdown -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.", "")) -1618899601899 geckodriver INFO Listening on 127.0.0.1:55619 -1618899602904 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileT8qpvY" -1618899607448 Marionette INFO Listening on port 36713 -1618899607483 Marionette WARN TLS certificate errors will be ignored for this session -1618899609930 geckodriver INFO Listening on 127.0.0.1:59201 -1618899610936 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilembYdBy" -1618899612030 Marionette INFO Stopped listening on port 36713 -1618899616844 Marionette INFO Listening on port 45861 -1618899616890 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 -1618899620275 Marionette INFO Stopped listening on port 45861 -1618899624105 geckodriver INFO Listening on 127.0.0.1:44409 -1618899625111 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewHhQlW" -1618899629488 Marionette INFO Listening on port 35955 -1618899629518 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 -1618899634055 Marionette INFO Stopped listening on port 35955 -1618899637863 geckodriver INFO Listening on 127.0.0.1:43295 -1618899638868 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepB5NPO" -1618899642619 Marionette INFO Listening on port 39171 -1618899642666 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 -1618899646754 Marionette INFO Stopped listening on port 39171 -1618899650554 geckodriver INFO Listening on 127.0.0.1:59563 -1618899651558 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7EReER" -1618899655609 Marionette INFO Listening on port 46553 -1618899655655 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 -1618899659940 Marionette INFO Stopped listening on port 46553 -1618899684111 geckodriver INFO Listening on 127.0.0.1:36881 -1618899685116 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4plbFf" -1618899690386 Marionette INFO Listening on port 34379 -1618899690398 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 -1618899694733 Marionette INFO Stopped listening on port 34379 -1618899698560 geckodriver INFO Listening on 127.0.0.1:34739 -1618899699564 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezAcLuc" -1618899703796 Marionette INFO Listening on port 46491 -1618899703862 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 -1618899708086 Marionette INFO Stopped listening on port 46491 -1618899708892 geckodriver INFO Listening on 127.0.0.1:59677 -1618899709895 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5RRBaQ" -1618899715261 Marionette INFO Listening on port 35425 -1618899715278 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 -1618899719690 Marionette INFO Stopped listening on port 35425 -1618899723704 geckodriver INFO Listening on 127.0.0.1:39681 -1618899724723 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOjmQdF" -1618899729223 Marionette INFO Listening on port 43975 -1618899729247 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 -1618899733875 Marionette INFO Stopped listening on port 43975 -1618923900920 geckodriver INFO Listening on 127.0.0.1:45469 -1618923901924 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileea2MXh" -1618923911414 Marionette INFO Listening on port 38129 -1618923911480 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 -1618923926062 Marionette INFO Stopped listening on port 38129 -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -1618923929448 geckodriver INFO Listening on 127.0.0.1:36679 -1618923930445 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenwzI36" -1618923935056 Marionette INFO Listening on port 38311 -1618923935085 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 -1618923948905 Marionette INFO Stopped listening on port 38311 -1618923957596 geckodriver INFO Listening on 127.0.0.1:41943 -1618923958600 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoPqfzi" -1618923962481 Marionette INFO Listening on port 43409 -1618923962568 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 -1618923964840 Marionette INFO Stopped listening on port 43409 -1618923970783 geckodriver INFO Listening on 127.0.0.1:60305 -1618923971793 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2sIWMi" -1618923975737 Marionette INFO Listening on port 37601 -1618923975782 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 -1618923978543 Marionette INFO Stopped listening on port 37601 -1618924069537 geckodriver INFO Listening on 127.0.0.1:55247 -1618924070541 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJJ2ZyN" -1618924074604 Marionette INFO Listening on port 44791 -1618924074669 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 -1618924088210 Marionette INFO Stopped listening on port 44791 -1618924096925 geckodriver INFO Listening on 127.0.0.1:33885 -1618924097929 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSmEdPs" -1618924101102 Marionette INFO Listening on port 43365 -1618924101127 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 -1618924102950 Marionette INFO Stopped listening on port 43365 -1618924106752 geckodriver INFO Listening on 127.0.0.1:34641 -1618924107759 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebf5OSV" -1618924112068 Marionette INFO Listening on port 44559 -1618924112154 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 -1618924114162 Marionette INFO Stopped listening on port 44559 -1618924124831 geckodriver INFO Listening on 127.0.0.1:58159 -1618924125828 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilep04uG4" -1618924129058 Marionette INFO Listening on port 44755 -1618924129105 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 -1618924142080 Marionette INFO Stopped listening on port 44755 -1618924151701 geckodriver INFO Listening on 127.0.0.1:53613 -1618924152704 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileabBww6" -1618924155925 Marionette INFO Listening on port 40213 -1618924155988 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 -1618924159265 Marionette INFO Stopped listening on port 40213 -1618924165019 geckodriver INFO Listening on 127.0.0.1:60463 -1618924166025 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSO0nSH" -1618924170536 Marionette INFO Listening on port 37761 -1618924170602 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 -1618924173619 Marionette INFO Stopped listening on port 37761 -1618924497245 geckodriver INFO Listening on 127.0.0.1:51177 -1618924498249 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileglXKGD" -1618924501850 Marionette INFO Listening on port 40517 -1618924501946 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." -1618924514976 Marionette INFO Stopped listening on port 40517 -1618924523968 geckodriver INFO Listening on 127.0.0.1:56175 -1618924524972 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegzNSsV" -1618924528183 Marionette INFO Listening on port 33371 -1618924528270 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 -1618924540933 Marionette INFO Stopped listening on port 33371 -1618924543643 geckodriver INFO Listening on 127.0.0.1:35189 -1618924544647 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexNXn5l" -1618924547930 Marionette INFO Listening on port 45327 -1618924548030 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 -1618924551025 Marionette INFO Stopped listening on port 45327 -1618924554949 geckodriver INFO Listening on 127.0.0.1:56867 -1618924555953 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenQoadr" -1618924559282 Marionette INFO Listening on port 37053 -1618924559323 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 -1618924562337 Marionette INFO Stopped listening on port 37053 -1618924895335 geckodriver INFO Listening on 127.0.0.1:53855 -1618924896339 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoee6Nw" -1618924899934 Marionette INFO Listening on port 32901 -1618924899989 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 -1618924913391 Marionette INFO Stopped listening on port 32901 -1618924914974 geckodriver INFO Listening on 127.0.0.1:41155 -1618924915979 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilek0Gc3S" -1618924919931 Marionette INFO Listening on port 40815 -1618924919951 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 -1618924932765 Marionette INFO Stopped listening on port 40815 -1618924937326 geckodriver INFO Listening on 127.0.0.1:58251 -1618924938329 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0fIIFl" -1618924941378 Marionette INFO Listening on port 33299 -1618924941403 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 -1618924944543 Marionette INFO Stopped listening on port 33299 -1618924948241 geckodriver INFO Listening on 127.0.0.1:46329 -1618924949237 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGqKwjq" -1618924952241 Marionette INFO Listening on port 35281 -1618924952336 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 -1618924955298 Marionette INFO Stopped listening on port 35281 -1618925040953 geckodriver INFO Listening on 127.0.0.1:43491 -1618925041957 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiler6Y66A" -1618925045551 Marionette INFO Listening on port 37893 -1618925045614 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 -1618925058779 Marionette INFO Stopped listening on port 37893 -1618925064391 geckodriver INFO Listening on 127.0.0.1:60475 -1618925065394 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6H1A30" -1618925068557 Marionette INFO Listening on port 45643 -1618925068579 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 -1618925082034 Marionette INFO Stopped listening on port 45643 -1618925091626 geckodriver INFO Listening on 127.0.0.1:36409 -1618925092630 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLKCahZ" -1618925096533 Marionette INFO Listening on port 35297 -1618925096597 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 -1618925099685 Marionette INFO Stopped listening on port 35297 -1618925109446 geckodriver INFO Listening on 127.0.0.1:36315 -1618925110450 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYnfwO5" -1618925113557 Marionette INFO Listening on port 40583 -1618925113619 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 -1618925116901 Marionette INFO Stopped listening on port 40583 -1618925206283 geckodriver INFO Listening on 127.0.0.1:58059 -1618925207288 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileauAuvK" -1618925210425 Marionette INFO Listening on port 35559 -1618925210470 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 -1618925223045 Marionette INFO Stopped listening on port 35559 -1618925226601 geckodriver INFO Listening on 127.0.0.1:55483 -1618925227605 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekbOye6" -1618925230709 Marionette INFO Listening on port 40887 -1618925230788 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 -1618925243950 Marionette INFO Stopped listening on port 40887 -1618925248584 geckodriver INFO Listening on 127.0.0.1:48487 -1618925249587 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileK1pnZ4" -1618925253611 Marionette INFO Listening on port 46115 -1618925253673 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 -1618925256794 Marionette INFO Stopped listening on port 46115 -1618925265659 geckodriver INFO Listening on 127.0.0.1:51317 -1618925266661 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJodstF" -1618925270235 Marionette INFO Listening on port 33911 -1618925270321 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 -1618925273257 Marionette INFO Stopped listening on port 33911 -1618925561298 geckodriver INFO Listening on 127.0.0.1:47467 -1618925562301 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZCeGEe" -1618925566687 Marionette INFO Listening on port 36327 -1618925566779 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 -1618925580279 Marionette INFO Stopped listening on port 36327 -1618925581863 geckodriver INFO Listening on 127.0.0.1:44927 -1618925582867 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevJ1Ap4" -1618925586224 Marionette INFO Listening on port 44535 -1618925586302 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 -1618925599639 Marionette INFO Stopped listening on port 44535 -1618925608424 geckodriver INFO Listening on 127.0.0.1:35821 -1618925609427 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiNNBm2" -1618925612743 Marionette INFO Listening on port 35829 -1618925612841 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 -1618925616079 Marionette INFO Stopped listening on port 35829 -1618925625917 geckodriver INFO Listening on 127.0.0.1:45403 -1618925626919 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilel7K00b" -1618925631637 Marionette INFO Listening on port 37987 -1618925631735 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 -1618925635082 Marionette INFO Stopped listening on port 37987 -1618925680975 geckodriver INFO Listening on 127.0.0.1:44681 -1618925681988 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUrhb7p" -1618925685333 Marionette INFO Listening on port 36935 -1618925685372 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 -1618925698327 Marionette INFO Stopped listening on port 36935 -1618925701894 geckodriver INFO Listening on 127.0.0.1:52527 -1618925702899 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6A7jpy" -1618925706029 Marionette INFO Listening on port 45343 -1618925706061 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 -1618925718803 Marionette INFO Stopped listening on port 45343 -1618925728547 geckodriver INFO Listening on 127.0.0.1:57493 -1618925729550 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5drcVR" -1618925732664 Marionette INFO Listening on port 46313 -1618925732757 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 -1618925735761 Marionette INFO Stopped listening on port 46313 -1618925744350 geckodriver INFO Listening on 127.0.0.1:43883 -1618925745354 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile84i5NK" -1618925748426 Marionette INFO Listening on port 38871 -1618925748521 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 -1618925751585 Marionette INFO Stopped listening on port 38871 -1618925804192 geckodriver INFO Listening on 127.0.0.1:35121 -1618925805196 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0zRiNI" -1618925808397 Marionette INFO Listening on port 33511 -1618925808479 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 -1618925821241 Marionette INFO Stopped listening on port 33511 -1618925825948 geckodriver INFO Listening on 127.0.0.1:51453 -1618925826952 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledDa3a0" -1618925829992 Marionette INFO Listening on port 46467 -1618925830024 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 -1618925843092 Marionette INFO Stopped listening on port 46467 -1618925849682 geckodriver INFO Listening on 127.0.0.1:37031 -1618925850686 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevHYX0r" -1618925853824 Marionette INFO Listening on port 42533 -1618925853898 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 -1618925857002 Marionette INFO Stopped listening on port 42533 -1618925861688 geckodriver INFO Listening on 127.0.0.1:41497 -1618925862692 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4TOelm" -1618925865848 Marionette INFO Listening on port 46461 -1618925865891 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 -1618925874562 Marionette INFO Stopped listening on port 46461 -1618925963800 geckodriver INFO Listening on 127.0.0.1:59225 -1618925964807 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile00acg2" -1618925970826 Marionette INFO Listening on port 42139 -1618925970940 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 -1618925984071 Marionette INFO Stopped listening on port 42139 -1618925989747 geckodriver INFO Listening on 127.0.0.1:47023 -1618925990751 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileebRt3G" -1618925994000 Marionette INFO Listening on port 39179 -1618925994042 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 -1618926006938 Marionette INFO Stopped listening on port 39179 -1618926011655 geckodriver INFO Listening on 127.0.0.1:58137 -1618926012658 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXITZWE" -1618926015812 Marionette INFO Listening on port 36189 -1618926015852 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 -1618926028068 Marionette INFO Stopped listening on port 36189 -1618926033856 geckodriver INFO Listening on 127.0.0.1:38183 -1618926034860 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledkoRg0" -1618926038806 Marionette INFO Listening on port 41223 -1618926038885 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 -1618926051277 Marionette INFO Stopped listening on port 41223 -1618928977957 geckodriver INFO Listening on 127.0.0.1:43347 -1618928978960 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQ6HXKC" -1618928983578 Marionette INFO Listening on port 35729 -1618928983604 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 -1618928996708 Marionette INFO Stopped listening on port 35729 -1618929001487 geckodriver INFO Listening on 127.0.0.1:55509 -1618929002493 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2sz8eJ" -1618929006074 Marionette INFO Listening on port 42801 -1618929006158 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 -1618929018993 Marionette INFO Stopped listening on port 42801 -1618929026595 geckodriver INFO Listening on 127.0.0.1:45829 -1618929027598 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevzhEeY" -1618929031462 Marionette INFO Listening on port 33581 -1618929031581 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 -1618929040492 Marionette INFO Stopped listening on port 33581 -1618929051115 geckodriver INFO Listening on 127.0.0.1:53749 -1618929052124 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVmvgMD" -1618989841687 geckodriver INFO Listening on 127.0.0.1:54861 -1618989842678 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekfbIsW" -1618989848306 Marionette INFO Listening on port 33743 -1618989848342 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 -1618989852303 Marionette INFO Stopped listening on port 33743 -1618989858092 geckodriver INFO Listening on 127.0.0.1:43301 -1618989859097 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledZVmzQ" -1618989862121 Marionette INFO Listening on port 37093 -1618989862150 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 -1618989874966 Marionette INFO Stopped listening on port 37093 -1618989878616 geckodriver INFO Listening on 127.0.0.1:59093 -1618989879621 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8In0UV" -1618989883318 Marionette INFO Listening on port 38769 -1618989883405 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 -1618989886730 Marionette INFO Stopped listening on port 38769 -1618989892559 geckodriver INFO Listening on 127.0.0.1:60587 -1618989893562 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2GgG8s" -1618989897353 Marionette INFO Listening on port 46269 -1618989897391 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 -1618989900728 Marionette INFO Stopped listening on port 46269 -1618989910453 geckodriver INFO Listening on 127.0.0.1:58107 -1618989911457 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekCj5cw" -1618989915335 Marionette INFO Listening on port 39489 -1618989915370 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 -1618989927460 Marionette INFO Stopped listening on port 39489 -1618990135877 geckodriver INFO Listening on 127.0.0.1:53427 -1618990136885 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile43P2IB" -1618990140058 Marionette INFO Listening on port 34255 -1618990140080 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 -1618990152806 Marionette INFO Stopped listening on port 34255 -Exiting due to channel error. -1618990168191 geckodriver INFO Listening on 127.0.0.1:37097 -1618990169194 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCBenEj" -1618990172678 Marionette INFO Listening on port 43743 -1618990172777 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 -1618990175774 Marionette INFO Stopped listening on port 43743 -1618990181510 geckodriver INFO Listening on 127.0.0.1:37667 -1618990182516 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7VN8sH" -1618990185970 Marionette INFO Listening on port 46275 -1618990185999 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 -1618990189707 Marionette INFO Stopped listening on port 46275 -1618990200314 geckodriver INFO Listening on 127.0.0.1:53935 -1618990201318 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0KZap9" -1618990204781 Marionette INFO Listening on port 44775 -1618990204792 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 -1618990209545 Marionette INFO Stopped listening on port 44775 -1618990217299 geckodriver INFO Listening on 127.0.0.1:59951 -1618990218302 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilew0duJT" -1618990221740 Marionette INFO Listening on port 42823 -1618990221779 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 -1618990225071 Marionette INFO Stopped listening on port 42823 -1618990230749 geckodriver INFO Listening on 127.0.0.1:42937 -1618990231753 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2oarzJ" -1618990235193 Marionette INFO Listening on port 45143 -1618990235233 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 -1618990238256 Marionette INFO Stopped listening on port 45143 -1618990377835 geckodriver INFO Listening on 127.0.0.1:34551 -1618990378844 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIxLtfG" -1618990382245 Marionette INFO Listening on port 45797 -1618990382265 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 -1618990395170 Marionette INFO Stopped listening on port 45797 -1618990401771 geckodriver INFO Listening on 127.0.0.1:35271 -1618990402776 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqjuGED" -1618990405855 Marionette INFO Listening on port 40997 -1618990405946 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 -1618990409419 Marionette INFO Stopped listening on port 40997 -1618990414078 geckodriver INFO Listening on 127.0.0.1:59453 -1618990415085 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBEhZ3X" -1618990419042 Marionette INFO Listening on port 43091 -1618990419056 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 -1618990424194 Marionette INFO Stopped listening on port 43091 -1618990433980 geckodriver INFO Listening on 127.0.0.1:35239 -1618990434985 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJddVbZ" -1618990438003 Marionette INFO Listening on port 40529 -1618990438045 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 -1618990442499 Marionette INFO Stopped listening on port 40529 -1618990446157 geckodriver INFO Listening on 127.0.0.1:53759 -1618990447156 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXcRa3C" -1618990450261 Marionette INFO Listening on port 37913 -1618990450324 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 -1618990453777 Marionette INFO Stopped listening on port 37913 -1618991064583 geckodriver INFO Listening on 127.0.0.1:57791 -1618991065587 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepBN5aP" -1618991068560 Marionette INFO Listening on port 43641 -1618991068641 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 -1618991072199 Marionette INFO Stopped listening on port 43641 -1618991081771 geckodriver INFO Listening on 127.0.0.1:59763 -1618991082776 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7RsM3z" -1618991085719 Marionette INFO Listening on port 36775 -1618991085730 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 -1618991089588 Marionette INFO Stopped listening on port 36775 -1618991101177 geckodriver INFO Listening on 127.0.0.1:53759 -1618991102182 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewpjBDw" -1618991105198 Marionette INFO Listening on port 38583 -1618991105262 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 -1618991108578 Marionette INFO Stopped listening on port 38583 -1618991113268 geckodriver INFO Listening on 127.0.0.1:42967 -1618991114272 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehlZrIg" -1618991117189 Marionette INFO Listening on port 32959 -1618991117232 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 -1618991121904 Marionette INFO Stopped listening on port 32959 -1618991133495 geckodriver INFO Listening on 127.0.0.1:43881 -1618991134500 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePjyW5R" -1618991138774 Marionette INFO Listening on port 42103 -1618991138784 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 -1618991142284 Marionette INFO Stopped listening on port 42103 -1618991172303 geckodriver INFO Listening on 127.0.0.1:55885 -1618991173306 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileavJQ16" -1618991177613 Marionette INFO Listening on port 41189 -1618991177629 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 -1618991181247 Marionette INFO Stopped listening on port 41189 -1618991184821 geckodriver INFO Listening on 127.0.0.1:38635 -1618991185825 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileijLtbP" -1618991188862 Marionette INFO Listening on port 40829 -1618991188899 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 -1618991192544 Marionette INFO Stopped listening on port 40829 -1618991196207 geckodriver INFO Listening on 127.0.0.1:52149 -1618991197210 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledaK0uA" -1618991200181 Marionette INFO Listening on port 34541 -1618991200189 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 -1618991203295 Marionette INFO Stopped listening on port 34541 -1618991212859 geckodriver INFO Listening on 127.0.0.1:41637 -1618991213864 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexX4qRx" -1618991216952 Marionette INFO Listening on port 37533 -1618991216958 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 -1618991221410 Marionette INFO Stopped listening on port 37533 -1618991225076 geckodriver INFO Listening on 127.0.0.1:39607 -1618991226080 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYCgjqD" -1618991229083 Marionette INFO Listening on port 36093 -1618991229154 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 -1618991233188 Marionette INFO Stopped listening on port 36093 -1618991374777 geckodriver INFO Listening on 127.0.0.1:58659 -1618991375782 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileV50d6x" -1618991378957 Marionette INFO Listening on port 45081 -1618991379043 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 -1618991384368 Marionette INFO Stopped listening on port 45081 -1618991392950 geckodriver INFO Listening on 127.0.0.1:51575 -1618991393953 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMyM6Ej" -1618991396983 Marionette INFO Listening on port 36637 -1618991397014 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 -1618991400563 Marionette INFO Stopped listening on port 36637 -1618991405136 geckodriver INFO Listening on 127.0.0.1:49829 -1618991406140 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqp8wJ9" -1618991409223 Marionette INFO Listening on port 42303 -1618991409313 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 -1618991414853 Marionette INFO Stopped listening on port 42303 -1618991418463 geckodriver INFO Listening on 127.0.0.1:42351 -1618991419468 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaLVaFn" -1618991422396 Marionette INFO Listening on port 46869 -1618991422427 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 -1618991427263 Marionette INFO Stopped listening on port 46869 -1618991435897 geckodriver INFO Listening on 127.0.0.1:45691 -1618991436902 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1jfndx" -1618991439901 Marionette INFO Listening on port 41847 -1618991439953 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 -1618991445187 Marionette INFO Stopped listening on port 41847 -1618991532361 geckodriver INFO Listening on 127.0.0.1:46685 -1618991533364 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerPug5M" -1618991536961 Marionette INFO Listening on port 37055 -1618991537046 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 -1618991540992 Marionette INFO Stopped listening on port 37055 -1618991546689 geckodriver INFO Listening on 127.0.0.1:54479 -1618991547694 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQR4xKA" -1618991551145 Marionette INFO Listening on port 34941 -1618991551168 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 -1618991555428 Marionette INFO Stopped listening on port 34941 -1618991566068 geckodriver INFO Listening on 127.0.0.1:40983 -1618991567071 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMOKbt4" -1618991570834 Marionette INFO Listening on port 34573 -1618991570842 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 -1618991576080 Marionette INFO Stopped listening on port 34573 -1618991581130 geckodriver INFO Listening on 127.0.0.1:34587 -1618991582134 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehN5UKO" -1618991586258 Marionette INFO Listening on port 45979 -1618991586306 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 -1618991592672 Marionette INFO Stopped listening on port 45979 -1618991598440 geckodriver INFO Listening on 127.0.0.1:37517 -1618991599436 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileW08bIt" -1618991602637 Marionette INFO Listening on port 45141 -1618991602721 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 -1618991608130 Marionette INFO Stopped listening on port 45141 -1618993567417 geckodriver INFO Listening on 127.0.0.1:45787 -1618993568421 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3h0Kj7" -1618993576427 Marionette INFO Listening on port 34829 -1618993576505 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 -1618993589880 Marionette INFO Stopped listening on port 34829 -1618993595455 geckodriver INFO Listening on 127.0.0.1:52223 -1618993596476 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewJFJSl" -1618993605589 Marionette INFO Listening on port 33747 -1618993605708 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 -1618993620093 Marionette INFO Stopped listening on port 33747 -1618993625367 geckodriver INFO Listening on 127.0.0.1:53247 -1618993626373 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilequIc2g" -1618993633862 Marionette INFO Listening on port 35515 -1618993633998 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 -1618993648438 Marionette INFO Stopped listening on port 35515 -1618993652857 geckodriver INFO Listening on 127.0.0.1:51511 -1618993653861 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilew8ei2Z" -1618993660110 Marionette INFO Listening on port 39721 -1618993660273 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 -1618993674489 Marionette INFO Stopped listening on port 39721 -1618993681746 geckodriver INFO Listening on 127.0.0.1:37011 -1618993682750 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIlRNPj" -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -1619006952361 geckodriver INFO Listening on 127.0.0.1:49595 -1619006953366 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegNlAtT" -1619006957166 Marionette INFO Listening on port 43159 -1619006957178 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 -1619006961162 Marionette INFO Stopped listening on port 43159 -1619006967884 geckodriver INFO Listening on 127.0.0.1:49289 -1619006968889 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6bqAPz" -1619006971899 Marionette INFO Listening on port 45917 -1619006971978 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 -1619006975601 Marionette INFO Stopped listening on port 45917 -1619006985266 geckodriver INFO Listening on 127.0.0.1:43639 -1619006986270 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAfOXmo" -1619006989364 Marionette INFO Listening on port 40769 -1619006989455 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 -1619006999514 Marionette INFO Stopped listening on port 40769 -1619007005258 geckodriver INFO Listening on 127.0.0.1:40767 -1619007006262 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilew8oJD5" -1619007009267 Marionette INFO Listening on port 33477 -1619007009361 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 -1619007019406 Marionette INFO Stopped listening on port 33477 -1619007022257 geckodriver INFO Listening on 127.0.0.1:55027 -1619007023261 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileH8Hx2N" -1619007027554 Marionette INFO Listening on port 42687 -1619007027645 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 -1619007033820 Marionette INFO Stopped listening on port 42687 -1619007285527 geckodriver INFO Listening on 127.0.0.1:56629 -1619007286532 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7xHxPS" -1619007289612 Marionette INFO Listening on port 36763 -1619007289646 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 -1619007293416 Marionette INFO Stopped listening on port 36763 -1619007296267 geckodriver INFO Listening on 127.0.0.1:55019 -1619007297271 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilem0oYG8" -1619007300336 Marionette INFO Listening on port 45583 -1619007300347 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 -1619007304084 Marionette INFO Stopped listening on port 45583 -1619007311821 geckodriver INFO Listening on 127.0.0.1:41661 -1619007312824 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1tAhcF" -1619007315862 Marionette INFO Listening on port 40957 -1619007315885 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 -1619007318936 Marionette INFO Stopped listening on port 40957 -1619007324686 geckodriver INFO Listening on 127.0.0.1:54597 -1619007325685 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledt8tpu" -1619007328631 Marionette INFO Listening on port 35057 -1619007328657 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 -1619007338734 Marionette INFO Stopped listening on port 35057 -1619007344551 geckodriver INFO Listening on 127.0.0.1:57271 -1619007345555 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMu3uXo" -1619007348644 Marionette INFO Listening on port 32903 -1619007348728 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 -1619007353835 Marionette INFO Stopped listening on port 32903 -1619008413159 geckodriver INFO Listening on 127.0.0.1:41031 -1619008414167 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYIt3Vz" -1619008417446 Marionette INFO Listening on port 35363 -1619008417475 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 -1619008421163 Marionette INFO Stopped listening on port 35363 -1619008428920 geckodriver INFO Listening on 127.0.0.1:41209 -1619008429924 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8l3wOK" -1619008433138 Marionette INFO Listening on port 38687 -1619008433254 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 -1619008437286 Marionette INFO Stopped listening on port 38687 -1619008447099 geckodriver INFO Listening on 127.0.0.1:45699 -1619008448102 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9HqJHC" -1619008451713 Marionette INFO Listening on port 38453 -1619008451785 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 -1619008454922 Marionette INFO Stopped listening on port 38453 -1619008465693 geckodriver INFO Listening on 127.0.0.1:53293 -1619008466697 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileR9PBAu" -1619008469816 Marionette INFO Listening on port 34797 -1619008469909 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 -1619008480352 Marionette INFO Stopped listening on port 34797 -1619008488041 geckodriver INFO Listening on 127.0.0.1:47759 -1619008489045 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYOnEhA" -1619008492100 Marionette INFO Listening on port 34493 -1619008492199 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 -1619008497371 Marionette INFO Stopped listening on port 34493 -1619008583217 geckodriver INFO Listening on 127.0.0.1:60997 -1619008584221 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1zok6N" -1619008588267 Marionette INFO Listening on port 44095 -1619008588314 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 -1619008592369 Marionette INFO Stopped listening on port 44095 -1619008596211 geckodriver INFO Listening on 127.0.0.1:39057 -1619008597214 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYjQMmo" -1619008600494 Marionette INFO Listening on port 39617 -1619008600511 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 -1619008604185 Marionette INFO Stopped listening on port 39617 -1619008612818 geckodriver INFO Listening on 127.0.0.1:36415 -1619008613822 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9CMeMT" -1619008616986 Marionette INFO Listening on port 39939 -1619008617002 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 -1619008636643 Marionette INFO Stopped listening on port 39939 -1619008646665 geckodriver INFO Listening on 127.0.0.1:33999 -1619008647668 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletdWf5l" -1619008651396 Marionette INFO Listening on port 33239 -1619008651456 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 -1619008661584 Marionette INFO Stopped listening on port 33239 -1619008665343 geckodriver INFO Listening on 127.0.0.1:56231 -1619008666347 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOUWV7H" -1619008670018 Marionette INFO Listening on port 33487 -1619008670025 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 -1619008675331 Marionette INFO Stopped listening on port 33487 -1619009061237 geckodriver INFO Listening on 127.0.0.1:46009 -1619009062248 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileig3QfT" -1619009065308 Marionette INFO Listening on port 39475 -1619009065322 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 -1619009069143 Marionette INFO Stopped listening on port 39475 -1619009078016 geckodriver INFO Listening on 127.0.0.1:50667 -1619009079020 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekWY7bE" -1619009082659 Marionette INFO Listening on port 42757 -1619009082722 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 -1619009086620 Marionette INFO Stopped listening on port 42757 -1619009092391 geckodriver INFO Listening on 127.0.0.1:43091 -1619009093394 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6vKLHE" -1619009097001 Marionette INFO Listening on port 46097 -1619009097082 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 -1619009109653 Marionette INFO Stopped listening on port 46097 -1619009114396 geckodriver INFO Listening on 127.0.0.1:35273 -1619009115400 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePyp6vd" -1619009118968 Marionette INFO Listening on port 40237 -1619009118993 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 -1619009129028 Marionette INFO Stopped listening on port 40237 -1619009139688 geckodriver INFO Listening on 127.0.0.1:53263 -1619009140691 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile19Ctc0" -1619009144430 Marionette INFO Listening on port 46759 -1619009144497 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 -1619009149797 Marionette INFO Stopped listening on port 46759 -1619009777542 geckodriver INFO Listening on 127.0.0.1:39553 -1619009778546 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilep92og7" -1619009782445 Marionette INFO Listening on port 34741 -1619009782541 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 -1619009786984 Marionette INFO Stopped listening on port 34741 -1619009795658 geckodriver INFO Listening on 127.0.0.1:42827 -1619009796662 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexf5HyA" -1619009800251 Marionette INFO Listening on port 43367 -1619009800268 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 -1619009804573 Marionette INFO Stopped listening on port 43367 -1619009810310 geckodriver INFO Listening on 127.0.0.1:37757 -1619009811313 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegSR2dD" -1619009815044 Marionette INFO Listening on port 38301 -1619009815117 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 -1619009834426 Marionette INFO Stopped listening on port 38301 -1619009843990 geckodriver INFO Listening on 127.0.0.1:46267 -1619009844994 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebNk1Es" -1619009848167 Marionette INFO Listening on port 43973 -1619009848213 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 -1619009858235 Marionette INFO Stopped listening on port 43973 -1619009861959 geckodriver INFO Listening on 127.0.0.1:59059 -1619009862962 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQOv5xW" -1619009866412 Marionette INFO Listening on port 41971 -1619009866429 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 -1619009872761 Marionette INFO Stopped listening on port 41971 -1619010863279 geckodriver INFO Listening on 127.0.0.1:39179 -1619010864284 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUmEgcq" -1619010898417 geckodriver INFO Listening on 127.0.0.1:60283 -1619010899421 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYdYQ5H" -1619010902516 Marionette INFO Listening on port 42057 -1619010902612 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 -1619010906686 Marionette INFO Stopped listening on port 42057 -1619010919375 geckodriver INFO Listening on 127.0.0.1:43571 -1619010920380 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5v7Kgz" -1619010923584 Marionette INFO Listening on port 33099 -1619010923677 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 -1619010927251 Marionette INFO Stopped listening on port 33099 -1619010930979 geckodriver INFO Listening on 127.0.0.1:53917 -1619010931982 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIyKMjD" -1619010935193 Marionette INFO Listening on port 41919 -1619010935253 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 -1619010950475 Marionette INFO Stopped listening on port 41919 -1619010958310 geckodriver INFO Listening on 127.0.0.1:41085 -1619010959313 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelR9fZm" -1619010962358 Marionette INFO Listening on port 36221 -1619010962389 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 -1619010972322 Marionette INFO Stopped listening on port 36221 -1619010978167 geckodriver INFO Listening on 127.0.0.1:51755 -1619010979170 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileM8GTtk" -1619010982194 Marionette INFO Listening on port 46075 -1619010982239 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 -1619010995534 Marionette INFO Stopped listening on port 46075 -1619011126457 geckodriver INFO Listening on 127.0.0.1:54301 -1619011127466 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezVjB9n" -1619011130957 Marionette INFO Listening on port 43157 -1619011130985 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 -1619011134991 Marionette INFO Stopped listening on port 43157 -1619011137896 geckodriver INFO Listening on 127.0.0.1:56879 -1619011138900 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSlISmv" -1619011141964 Marionette INFO Listening on port 43681 -1619011142063 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 -1619011145632 Marionette INFO Stopped listening on port 43681 -1619011154286 geckodriver INFO Listening on 127.0.0.1:48693 -1619011155294 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOBrSLG" -1619011158392 Marionette INFO Listening on port 39575 -1619011158460 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 -1619011183965 Marionette INFO Stopped listening on port 39575 -1619011189830 geckodriver INFO Listening on 127.0.0.1:38405 -1619011190833 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileEW04aG" -1619011195200 Marionette INFO Listening on port 34583 -1619011195294 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 -1619011205722 Marionette INFO Stopped listening on port 34583 -1619011214472 geckodriver INFO Listening on 127.0.0.1:36217 -1619011215477 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBtutC5" -1619011219550 Marionette INFO Listening on port 41777 -1619011219574 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 -1619011232913 Marionette INFO Stopped listening on port 41777 -1619011277674 geckodriver INFO Listening on 127.0.0.1:59071 -1619011278684 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNVWSfD" -1619011289488 geckodriver INFO Listening on 127.0.0.1:59309 -1619011290493 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAezzDG" -1619011293983 Marionette INFO Listening on port 33951 -1619011294067 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 -1619011298063 Marionette INFO Stopped listening on port 33951 -1619011302838 geckodriver INFO Listening on 127.0.0.1:50439 -1619011303842 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilee2CfiE" -1619011307458 Marionette INFO Listening on port 34883 -1619011307516 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 -1619011311178 Marionette INFO Stopped listening on port 34883 -1619011317846 geckodriver INFO Listening on 127.0.0.1:36299 -1619011318849 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelryz2A" -1619011322932 Marionette INFO Listening on port 39875 -1619011322943 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 -1619011348479 Marionette INFO Stopped listening on port 39875 -1619011357119 geckodriver INFO Listening on 127.0.0.1:57185 -1619011358123 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZvSofQ" -1619011361367 Marionette INFO Listening on port 35999 -1619011361391 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 -1619011371422 Marionette INFO Stopped listening on port 35999 -1619011378142 geckodriver INFO Listening on 127.0.0.1:44507 -1619011379146 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGIG3r3" -1619011382440 Marionette INFO Listening on port 44963 -1619011382510 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 -1619011397895 Marionette INFO Stopped listening on port 44963 -1619166848045 geckodriver INFO Listening on 127.0.0.1:59057 -1619166849039 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUoB2DC" -1619166853014 Marionette INFO Listening on port 38199 -1619166853044 Marionette WARN TLS certificate errors will be ignored for this session -1619166867082 Marionette INFO Stopped listening on port 38199 -1619167858511 geckodriver INFO Listening on 127.0.0.1:59391 -1619167859515 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileV4J0bE" -1619167863447 Marionette INFO Listening on port 42493 -1619167863471 Marionette WARN TLS certificate errors will be ignored for this session -1619167914147 Marionette INFO Stopped listening on port 42493 -1619167940524 geckodriver INFO Listening on 127.0.0.1:54137 -1619167941527 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8GMNZW" -1619167944694 Marionette INFO Listening on port 40713 -1619167944793 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 -1619167946960 Marionette INFO Stopped listening on port 40713 -1619167987784 geckodriver INFO Listening on 127.0.0.1:53485 -1619167988788 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5zt9BV" -1619167991819 Marionette INFO Listening on port 32915 -1619167991866 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 -1619168003750 Marionette INFO Stopped listening on port 32915 -1619168044038 geckodriver INFO Listening on 127.0.0.1:45091 -1619168045042 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNrin4o" -1619168048018 Marionette INFO Listening on port 46421 -1619168048123 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 -1619168059847 Marionette INFO Stopped listening on port 46421 -1619168066547 geckodriver INFO Listening on 127.0.0.1:39309 -1619168067551 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileToH6E0" -1619168071215 Marionette INFO Listening on port 43797 -1619168071297 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 -1619168083259 Marionette INFO Stopped listening on port 43797 -1619178434346 geckodriver INFO Listening on 127.0.0.1:44317 -1619178435336 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemuHvA6" -1619178439393 Marionette INFO Listening on port 37233 -1619178439404 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 -1619178443656 Marionette INFO Stopped listening on port 37233 -1619178445313 geckodriver INFO Listening on 127.0.0.1:53629 -1619178446316 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemJN024" -1619178449361 Marionette INFO Listening on port 41383 -1619178449379 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 -1619178453658 Marionette INFO Stopped listening on port 41383 -1619178461289 geckodriver INFO Listening on 127.0.0.1:39165 -1619178462293 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXyMt2h" -1619178465270 Marionette INFO Listening on port 36147 -1619178465358 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 -1619178472556 Marionette INFO Stopped listening on port 36147 -1619178482183 geckodriver INFO Listening on 127.0.0.1:45223 -1619178483181 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4i83qu" -1619178486245 Marionette INFO Listening on port 35177 -1619178486252 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 -1619178492280 Marionette INFO Stopped listening on port 35177 -1619178501914 geckodriver INFO Listening on 127.0.0.1:41459 -1619178502918 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7OW8UI" -1619178506076 Marionette INFO Listening on port 43063 -1619178506108 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 -1619178522001 Marionette INFO Stopped listening on port 43063 -1619179220939 geckodriver INFO Listening on 127.0.0.1:37109 -1619179221943 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIGhhHb" -1619179226105 Marionette INFO Listening on port 38873 -1619179226206 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 -1619179238331 Marionette INFO Stopped listening on port 38873 -1619179264278 geckodriver INFO Listening on 127.0.0.1:58741 -1619179265281 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRTa3la" -1619179268322 Marionette INFO Listening on port 46279 -1619179268369 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 -1619179271293 Marionette INFO Stopped listening on port 46279 -1619179295750 geckodriver INFO Listening on 127.0.0.1:58449 -1619179296754 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileo2jEGZ" -1619179299797 Marionette INFO Listening on port 33381 -1619179299822 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 -1619179302695 Marionette INFO Stopped listening on port 33381 -1619182733129 geckodriver INFO Listening on 127.0.0.1:40693 -1619182734133 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegqsZwr" -1619182739342 Marionette INFO Listening on port 38319 -1619182739429 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 -1619182744005 Marionette INFO Stopped listening on port 38319 -1619182751856 geckodriver INFO Listening on 127.0.0.1:50149 -1619182752860 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZnEQMu" -1619182756878 Marionette INFO Listening on port 35211 -1619182756977 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 -1619182760163 Marionette INFO Stopped listening on port 35211 -1619184281115 geckodriver INFO Listening on 127.0.0.1:58355 -1619184282117 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletZrsuh" -1619184288281 Marionette INFO Listening on port 40769 -1619184288320 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 -1619184292066 Marionette INFO Stopped listening on port 40769 -1619184298092 geckodriver INFO Listening on 127.0.0.1:51445 -1619184299085 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileE2tfEr" -1619184303534 Marionette INFO Listening on port 44969 -1619184303601 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 -1619184307806 Marionette INFO Stopped listening on port 44969 -1619184310787 geckodriver INFO Listening on 127.0.0.1:55127 -1619184311789 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiler5gWGa" -1619184315891 Marionette INFO Listening on port 46305 -1619184315975 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 -1619184319265 Marionette INFO Stopped listening on port 46305 -1619184521880 geckodriver INFO Listening on 127.0.0.1:48263 -1619184522888 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCzXkKb" -1619184528110 Marionette INFO Listening on port 44983 -1619184528138 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." -1619184542468 Marionette INFO Stopped listening on port 44983 -1619184551031 geckodriver INFO Listening on 127.0.0.1:49921 -1619184552042 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejzQhP4" -1619184557535 Marionette INFO Listening on port 40011 -1619184557606 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 -1619184561561 Marionette INFO Stopped listening on port 40011 -1619184571508 geckodriver INFO Listening on 127.0.0.1:59143 -1619184572512 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile04WCP4" -1619184578544 Marionette INFO Listening on port 43223 -1619184578561 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 -1619184581873 Marionette INFO Stopped listening on port 43223 -1619186358516 geckodriver INFO Listening on 127.0.0.1:58891 -1619186359532 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4AIm46" -1619186364371 Marionette INFO Listening on port 45713 -1619186364441 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 -1619186370143 Marionette INFO Stopped listening on port 45713 -1619186376305 geckodriver INFO Listening on 127.0.0.1:38549 -1619186377308 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletXA6Lm" -1619186381763 Marionette INFO Listening on port 44149 -1619186381835 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 -1619186385730 Marionette INFO Stopped listening on port 44149 -1619186391788 geckodriver INFO Listening on 127.0.0.1:51553 -1619186392794 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAgGvpb" -1619186397229 Marionette INFO Listening on port 39405 -1619186397332 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 -1619186400813 Marionette INFO Stopped listening on port 39405 -1619187775187 geckodriver INFO Listening on 127.0.0.1:45373 -1619187776200 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8akPTa" -1619187780496 Marionette INFO Listening on port 37197 -1619187780515 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 -1619187785397 Marionette INFO Stopped listening on port 37197 -1619187792290 geckodriver INFO Listening on 127.0.0.1:36515 -1619187793293 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTcy268" -1619187797489 Marionette INFO Listening on port 37439 -1619187797507 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 -1619187801634 Marionette INFO Stopped listening on port 37439 -1619187807639 geckodriver INFO Listening on 127.0.0.1:44511 -1619187808644 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4zuUQP" -1619187812943 Marionette INFO Listening on port 34251 -1619187813025 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 -1619187816326 Marionette INFO Stopped listening on port 34251 -1619425649015 geckodriver INFO Listening on 127.0.0.1:39399 -1619425649035 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUoXQpy" -1619425659708 Marionette INFO Listening on port 37725 -1619425659719 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 -1619425664800 Marionette INFO Stopped listening on port 37725 -1619425668505 geckodriver INFO Listening on 127.0.0.1:52393 -1619425669502 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerY6RoS" -1619425672763 Marionette INFO Listening on port 33529 -1619425672795 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 -1619425676553 Marionette INFO Stopped listening on port 33529 -1619425685220 geckodriver INFO Listening on 127.0.0.1:37939 -1619425686224 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4tVlVM" -1619425689217 Marionette INFO Listening on port 38375 -1619425689305 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 -1619425692328 Marionette INFO Stopped listening on port 38375 -1619426443490 geckodriver INFO Listening on 127.0.0.1:49313 -1619426444494 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefIMGdp" -1619426448702 Marionette INFO Listening on port 40319 -1619426448757 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 -1619426459913 Marionette INFO Stopped listening on port 40319 -1619426467665 geckodriver INFO Listening on 127.0.0.1:47689 -1619426468669 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilen6gSix" -1619426471673 Marionette INFO Listening on port 39975 -1619426471719 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 -1619426475744 Marionette INFO Stopped listening on port 39975 -1619426484505 geckodriver INFO Listening on 127.0.0.1:47935 -1619426485510 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecm0qlT" -1619426488689 Marionette INFO Listening on port 40077 -1619426488706 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 -1619426492058 Marionette INFO Stopped listening on port 40077 -1619426497775 geckodriver INFO Listening on 127.0.0.1:55791 -1619426498779 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenzZ3Np" -1619426501823 Marionette INFO Listening on port 34603 -1619426501881 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 -1619426504756 Marionette INFO Stopped listening on port 34603 -1619429304502 geckodriver INFO Listening on 127.0.0.1:40237 -1619429305506 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileA98hbi" -1619429308650 Marionette INFO Listening on port 41895 -1619429308673 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 -1619429319463 Marionette INFO Stopped listening on port 41895 -1619429321143 geckodriver INFO Listening on 127.0.0.1:40791 -1619429322148 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepA9blO" -1619429326054 Marionette INFO Listening on port 42941 -1619429326136 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 -1619429330216 Marionette INFO Stopped listening on port 42941 -1619429336101 geckodriver INFO Listening on 127.0.0.1:59087 -1619429337104 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFNFtPD" -1619429340214 Marionette INFO Listening on port 40703 -1619429340275 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 -1619429343795 Marionette INFO Stopped listening on port 40703 -1619429347505 geckodriver INFO Listening on 127.0.0.1:57437 -1619429348508 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMUwJmy" -1619429351618 Marionette INFO Listening on port 36789 -1619429351702 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 -1619429354804 Marionette INFO Stopped listening on port 36789 -1619430711896 geckodriver INFO Listening on 127.0.0.1:56493 -1619430712900 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile85XyfV" -1619430715966 Marionette INFO Listening on port 38239 -1619430715979 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 -1619430720535 Marionette INFO Stopped listening on port 38239 -1619430724267 geckodriver INFO Listening on 127.0.0.1:45815 -1619430725272 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqHMwj1" -1619430728458 Marionette INFO Listening on port 43739 -1619430728545 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 -1619430738851 Marionette INFO Stopped listening on port 43739 -1619430747448 geckodriver INFO Listening on 127.0.0.1:42907 -1619430748452 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilescsyYA" -1619430751630 Marionette INFO Listening on port 42747 -1619430751645 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 -1619430756591 Marionette INFO Stopped listening on port 42747 -1619430760329 geckodriver INFO Listening on 127.0.0.1:34367 -1619430761333 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerF0xBE" -1619430764741 Marionette INFO Listening on port 42987 -1619430764828 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: resource://devtools/client/jsonview/converter-observer.js, line 94: NS_ERROR_NOT_AVAILABLE: Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIChannel.contentType] -1619430765357 geckodriver INFO Listening on 127.0.0.1:38639 -1619430766351 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSxYDpa" -1619430770298 Marionette INFO Listening on port 44107 -1619430770345 Marionette WARN TLS certificate errors will be ignored for this session -1619430770696 Marionette INFO Stopped listening on port 42987 -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 -1619430773641 Marionette INFO Stopped listening on port 44107 -1619436939251 geckodriver INFO Listening on 127.0.0.1:45969 -1619436940255 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepuvCjy" -1619436943335 Marionette INFO Listening on port 39667 -1619436943363 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 -1619436948464 Marionette INFO Stopped listening on port 39667 -1619436960397 geckodriver INFO Listening on 127.0.0.1:53125 -1619436961400 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLcrjqz" -1619436965178 Marionette INFO Listening on port 33479 -1619436965189 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 -1619436975883 Marionette INFO Stopped listening on port 33479 -1619436979620 geckodriver INFO Listening on 127.0.0.1:33215 -1619436980624 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileapGQ0u" -1619436983729 Marionette INFO Listening on port 36619 -1619436983822 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 -1619436987757 Marionette INFO Stopped listening on port 36619 -1619436996511 geckodriver INFO Listening on 127.0.0.1:37127 -1619436997514 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileq84xq9" -1619437000610 Marionette INFO Listening on port 41573 -1619437000696 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 -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 -1619437005112 Marionette INFO Stopped listening on port 41573 -1619437014766 geckodriver INFO Listening on 127.0.0.1:54427 -1619437015770 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledK7BlF" -1619437018793 Marionette INFO Listening on port 33425 -1619437018835 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 -1619437021761 Marionette INFO Stopped listening on port 33425 -1619437678164 geckodriver INFO Listening on 127.0.0.1:37711 -1619437679168 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexNplsZ" -1619437682449 Marionette INFO Listening on port 45277 -1619437682474 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 -1619437686634 Marionette INFO Stopped listening on port 45277 -1619437691359 geckodriver INFO Listening on 127.0.0.1:43233 -1619437692363 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileS07P97" -1619437695395 Marionette INFO Listening on port 44381 -1619437695444 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 -1619437705906 Marionette INFO Stopped listening on port 44381 -1619437716520 geckodriver INFO Listening on 127.0.0.1:52179 -1619437717523 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWWBP6q" -1619437720626 Marionette INFO Listening on port 41705 -1619437720720 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 -1619437725100 Marionette INFO Stopped listening on port 41705 -1619437728821 geckodriver INFO Listening on 127.0.0.1:33017 -1619437729825 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileA0NzNu" -1619437733016 Marionette INFO Listening on port 43961 -1619437733115 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 -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 -1619437737438 Marionette INFO Stopped listening on port 43961 -1619437746177 geckodriver INFO Listening on 127.0.0.1:58323 -1619437747182 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileV0V6iW" -1619437750382 Marionette INFO Listening on port 37845 -1619437750445 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 -1619437753771 Marionette INFO Stopped listening on port 37845 -1619438096964 geckodriver INFO Listening on 127.0.0.1:57431 -1619438097967 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAOFQrC" -1619438101003 Marionette INFO Listening on port 38111 -1619438101027 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 -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -1619438143752 geckodriver INFO Listening on 127.0.0.1:35687 -1619438144756 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNdbDJS" -1619438147907 Marionette INFO Listening on port 46803 -1619438147936 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619438164862 Marionette INFO Stopped listening on port 46803 -1619438166904 geckodriver INFO Listening on 127.0.0.1:38213 -1619438167907 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileEFJ8OW" -1619438171210 Marionette INFO Listening on port 41639 -1619438171246 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 -1619438181915 Marionette INFO Stopped listening on port 41639 -1619438187055 geckodriver INFO Listening on 127.0.0.1:54963 -1619438188058 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLjBNHM" -1619438191547 Marionette INFO Listening on port 39153 -1619438191615 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 -1619438195686 Marionette INFO Stopped listening on port 39153 -1619438199458 geckodriver INFO Listening on 127.0.0.1:42669 -1619438200462 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0G1iGd" -1619438203934 Marionette INFO Listening on port 40365 -1619438203946 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 -1619438207322 Marionette INFO Stopped listening on port 40365 -1619438211073 geckodriver INFO Listening on 127.0.0.1:58309 -1619438212077 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAqwD2e" -1619438215548 Marionette INFO Listening on port 36337 -1619438215577 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 -1619438218627 Marionette INFO Stopped listening on port 36337 -1619438413904 geckodriver INFO Listening on 127.0.0.1:46497 -1619438414907 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAY71HO" -1619438418007 Marionette INFO Listening on port 37705 -1619438418075 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619438426299 Marionette INFO Stopped listening on port 37705 -1619438430059 geckodriver INFO Listening on 127.0.0.1:41975 -1619438431063 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqWQ0rZ" - -###!!! [Child][MessageChannel] Error: (msgtype=0x60021,name=PBackground::Msg_PServiceWorkerManagerConstructor) Channel error: cannot send/recv - -Exiting due to channel error. -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -1619438584500 geckodriver INFO Listening on 127.0.0.1:35303 -1619438585503 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYmWtss" -1619438588575 Marionette INFO Listening on port 39359 -1619438588607 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619438596701 Marionette INFO Stopped listening on port 39359 -1619438600424 geckodriver INFO Listening on 127.0.0.1:38375 -1619438601428 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledVyv00" -1619438604530 Marionette INFO Listening on port 34523 -1619438604601 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 -1619438608572 Marionette INFO Stopped listening on port 34523 -1619438618252 geckodriver INFO Listening on 127.0.0.1:48273 -1619438619264 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNJVwVn" -1619438622396 Marionette INFO Listening on port 44671 -1619438622458 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 -1619438626501 Marionette INFO Stopped listening on port 44671 -1619438639215 geckodriver INFO Listening on 127.0.0.1:56855 -1619438640219 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefImmet" -1619438643395 Marionette INFO Listening on port 38877 -1619438643491 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 -1619438646927 Marionette INFO Stopped listening on port 38877 -1619438650624 geckodriver INFO Listening on 127.0.0.1:42559 -1619438651627 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZJ9hiQ" -1619438654773 Marionette INFO Listening on port 35477 -1619438654809 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 -1619438657832 Marionette INFO Stopped listening on port 35477 -1619438664568 geckodriver INFO Listening on 127.0.0.1:45627 -1619438665573 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWRMomn" -1619438668623 Marionette INFO Listening on port 36139 -1619438668664 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619438677390 Marionette INFO Stopped listening on port 36139 -1619439444818 geckodriver INFO Listening on 127.0.0.1:33765 -1619439445822 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRSiDYU" -1619439448996 Marionette INFO Listening on port 42569 -1619439449016 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619439456781 Marionette INFO Stopped listening on port 42569 -1619439463546 geckodriver INFO Listening on 127.0.0.1:41527 -1619439464550 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileh6gdP8" -1619439467579 Marionette INFO Listening on port 42913 -1619439467626 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 -1619439471563 Marionette INFO Stopped listening on port 42913 -1619439475265 geckodriver INFO Listening on 127.0.0.1:53681 -1619439476270 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGxhBfa" -1619439481279 Marionette INFO Listening on port 42505 -Exiting due to channel error. -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -1619440007041 geckodriver INFO Listening on 127.0.0.1:58135 -1619440008022 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0XA4X9" -1619440012918 Marionette INFO Listening on port 34785 -1619440012940 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619440020398 Marionette INFO Stopped listening on port 34785 -1619440029191 geckodriver INFO Listening on 127.0.0.1:48343 -1619440030195 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilej350Kz" -1619440033879 Marionette INFO Listening on port 43281 -1619440033891 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 -1619440037990 Marionette INFO Stopped listening on port 43281 -1619440044702 geckodriver INFO Listening on 127.0.0.1:50137 -1619440045706 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegaXSyT" -1619440049199 Marionette INFO Listening on port 43489 -1619440049210 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 -1619440053187 Marionette INFO Stopped listening on port 43489 -1619440059960 geckodriver INFO Listening on 127.0.0.1:42263 -1619440060964 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevrFN3V" -1619440064483 Marionette INFO Listening on port 36079 -1619440064530 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 -1619440067955 Marionette INFO Stopped listening on port 36079 -1619440071677 geckodriver INFO Listening on 127.0.0.1:42587 -1619440072681 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTighZK" -1619440076304 Marionette INFO Listening on port 44801 -1619440076368 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 -1619440079266 Marionette INFO Stopped listening on port 44801 -1619440080168 geckodriver INFO Listening on 127.0.0.1:54027 -1619440081163 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletbkflv" -1619440084694 Marionette INFO Listening on port 34359 -1619440084743 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619440093105 Marionette INFO Stopped listening on port 34359 -1619443891790 geckodriver INFO Listening on 127.0.0.1:47941 -1619443892794 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelgOKii" -1619443896835 Marionette INFO Listening on port 45637 -1619443896881 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619443905512 Marionette INFO Stopped listening on port 45637 -1619443908264 geckodriver INFO Listening on 127.0.0.1:54767 -1619443909263 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXoMfMT" -1619443912829 Marionette INFO Listening on port 36213 -1619443912843 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 -1619443917445 Marionette INFO Stopped listening on port 36213 -1619443924190 geckodriver INFO Listening on 127.0.0.1:35369 -1619443925194 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebaT5Pp" -1619443928767 Marionette INFO Listening on port 32961 -1619443928776 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 -1619443933087 Marionette INFO Stopped listening on port 32961 -1619443936965 geckodriver INFO Listening on 127.0.0.1:48855 -1619443937968 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesWgMEv" -1619443941656 Marionette INFO Listening on port 44737 -1619443941757 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 -1619443945117 Marionette INFO Stopped listening on port 44737 -1619443948856 geckodriver INFO Listening on 127.0.0.1:50115 -1619443949860 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileH9ZraL" -1619443953521 Marionette INFO Listening on port 39115 -1619443953554 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 -1619443956594 Marionette INFO Stopped listening on port 39115 -1619443966251 geckodriver INFO Listening on 127.0.0.1:47125 -1619443967255 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileyRYwjL" -1619443970888 Marionette INFO Listening on port 42069 -1619443970932 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619443979903 Marionette INFO Stopped listening on port 42069 -1619523240783 geckodriver INFO Listening on 127.0.0.1:54573 -1619523241779 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewn5i8n" -1619523247522 Marionette INFO Listening on port 35421 -1619523247558 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619523255619 Marionette INFO Stopped listening on port 35421 -1619523259472 geckodriver INFO Listening on 127.0.0.1:46199 -1619523260476 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekz5lxu" -1619523263712 Marionette INFO Listening on port 44177 -1619523263769 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 -1619523267967 Marionette INFO Stopped listening on port 44177 -1619523276753 geckodriver INFO Listening on 127.0.0.1:37391 -1619523277757 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelhvPQf" -1619523280924 Marionette INFO Listening on port 40985 -1619523281023 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 -1619523284845 Marionette INFO Stopped listening on port 40985 -1619523289588 geckodriver INFO Listening on 127.0.0.1:58127 -1619523290592 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1bsimR" -1619523293627 Marionette INFO Listening on port 38877 -1619523293661 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 -1619523297061 Marionette INFO Stopped listening on port 38877 -1619523300783 geckodriver INFO Listening on 127.0.0.1:44709 -1619523301787 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRk4oZJ" -1619523304928 Marionette INFO Listening on port 41133 -1619523304953 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 -1619523307910 Marionette INFO Stopped listening on port 41133 -1619523311639 geckodriver INFO Listening on 127.0.0.1:54383 -1619523312642 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFnBmTn" -1619523315718 Marionette INFO Listening on port 43443 -1619523315820 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619523324343 Marionette INFO Stopped listening on port 43443 -1619523337084 geckodriver INFO Listening on 127.0.0.1:54483 -1619523338088 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXN6yiW" -1619523341147 Marionette INFO Listening on port 37521 -1619523341176 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 -1619523345268 Marionette INFO Stopped listening on port 37521 -1619530902582 geckodriver INFO Listening on 127.0.0.1:34765 -1619530903593 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileuB25EX" -1619530906651 Marionette INFO Listening on port 33601 -1619530906667 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619530914026 Marionette INFO Stopped listening on port 33601 -1619530920831 geckodriver INFO Listening on 127.0.0.1:51285 -1619530921835 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile53s16g" -1619530924877 Marionette INFO Listening on port 40175 -1619530924922 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 -1619530929378 Marionette INFO Stopped listening on port 40175 -1619530933213 geckodriver INFO Listening on 127.0.0.1:44417 -1619530934217 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBPB4mE" -1619530937654 Marionette INFO Listening on port 35587 -1619530937709 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 -1619530941873 Marionette INFO Stopped listening on port 35587 -1619530951535 geckodriver INFO Listening on 127.0.0.1:36307 -1619530952539 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJkg98F" -1619530955718 Marionette INFO Listening on port 33795 -1619530955814 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 -1619530959904 Marionette INFO Stopped listening on port 33795 -1619530965625 geckodriver INFO Listening on 127.0.0.1:39345 -1619530966628 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDI7cqx" -1619530969683 Marionette INFO Listening on port 38575 -1619530969707 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 -1619530973236 Marionette INFO Stopped listening on port 38575 -1619530978961 geckodriver INFO Listening on 127.0.0.1:34383 -1619530979964 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVSK8ls" -1619530983021 Marionette INFO Listening on port 37335 -1619530983120 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 -1619530986007 Marionette INFO Stopped listening on port 37335 -1619530995657 geckodriver INFO Listening on 127.0.0.1:34173 -1619530996653 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileEigLUx" -1619530999686 Marionette INFO Listening on port 33647 -1619530999743 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619531008315 Marionette INFO Stopped listening on port 33647 -1619531019991 geckodriver INFO Listening on 127.0.0.1:58425 -1619531020995 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilephCzrF" -1619531024120 Marionette INFO Listening on port 45483 -1619531024176 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 -1619531028393 Marionette INFO Stopped listening on port 45483 -1619532529187 geckodriver INFO Listening on 127.0.0.1:45081 -1619532530191 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5QHDWX" -1619532533462 Marionette INFO Listening on port 40265 -1619532533478 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619532541298 Marionette INFO Stopped listening on port 40265 -1619532544973 geckodriver INFO Listening on 127.0.0.1:37729 -1619532545976 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJZEoCw" -1619532549359 Marionette INFO Listening on port 39983 -1619532549386 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 -1619532553738 Marionette INFO Stopped listening on port 39983 -1619532554657 geckodriver INFO Listening on 127.0.0.1:57825 -1619532555661 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSh1Q6Z" -1619532558696 Marionette INFO Listening on port 39583 -1619532558742 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 -1619532562973 Marionette INFO Stopped listening on port 39583 -1619532575641 geckodriver INFO Listening on 127.0.0.1:60517 -1619532576645 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4LuK8D" -1619532579791 Marionette INFO Listening on port 35145 -1619532579825 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 -1619532583951 Marionette INFO Stopped listening on port 35145 -1619532586708 geckodriver INFO Listening on 127.0.0.1:45957 -1619532587710 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileb2fadS" -1619532590744 Marionette INFO Listening on port 38689 -1619532590757 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 -1619532594229 Marionette INFO Stopped listening on port 38689 -1619532600969 geckodriver INFO Listening on 127.0.0.1:40405 -1619532601972 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileEzOL3f" -1619532605020 Marionette INFO Listening on port 46305 -1619532605032 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 -1619532608119 Marionette INFO Stopped listening on port 46305 -1619532618768 geckodriver INFO Listening on 127.0.0.1:58923 -1619532619771 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAfEIlP" -1619532622864 Marionette INFO Listening on port 38885 -1619532622958 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619532631313 Marionette INFO Stopped listening on port 38885 -1619532640990 geckodriver INFO Listening on 127.0.0.1:57393 -1619532641994 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBnASs6" -1619532645184 Marionette INFO Listening on port 39895 -1619532645231 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 -1619532649240 Marionette INFO Stopped listening on port 39895 -1619595684076 geckodriver INFO Listening on 127.0.0.1:32867 -1619595685072 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevTPjWJ" -1619595690539 Marionette INFO Listening on port 38795 -1619595690609 Marionette WARN TLS certificate errors will be ignored for this session -1619595754089 geckodriver INFO Listening on 127.0.0.1:48685 -1619595755092 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSBtz7W" -1619595759443 Marionette INFO Listening on port 35589 -1619595759540 Marionette WARN TLS certificate errors will be ignored for this session -1619595822959 geckodriver INFO Listening on 127.0.0.1:45635 -1619595823961 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilex1lXbZ" -1619595828352 Marionette INFO Listening on port 33195 -1619595828437 Marionette WARN TLS certificate errors will be ignored for this session -1619595892052 geckodriver INFO Listening on 127.0.0.1:38869 -1619595893049 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLK4JxN" -1619595897578 Marionette INFO Listening on port 39747 -1619595897588 Marionette WARN TLS certificate errors will be ignored for this session -1619595961206 geckodriver INFO Listening on 127.0.0.1:41311 -1619595962208 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDqTvpI" -1619595966706 Marionette INFO Listening on port 38025 -1619595966753 Marionette WARN TLS certificate errors will be ignored for this session -1619596030282 geckodriver INFO Listening on 127.0.0.1:59841 -1619596031285 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDbtxEG" -1619596035666 Marionette INFO Listening on port 41935 -1619596035748 Marionette WARN TLS certificate errors will be ignored for this session -1619596099136 geckodriver INFO Listening on 127.0.0.1:48687 -1619596100138 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejJs1hJ" -1619596104535 Marionette INFO Listening on port 45113 -1619596104609 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." -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: security-state/intermediates importBulk() IndexedDB: importBulk() in security-state/intermediates The current transaction exceeded its quota limitations. -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: main/search-config importBulk() IndexedDB: importBulk() in main/search-config The current transaction exceeded its quota limitations. -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: blocklists/addons-bloomfilters importBulk() IndexedDB: importBulk() in blocklists/addons-bloomfilters The current transaction exceeded its quota limitations. -console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: security-state/onecrl importBulk() IndexedDB: importBulk() in security-state/onecrl The current transaction exceeded its quota limitations. -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: main/url-classifier-skip-urls saveLastModified() IndexedDB: saveLastModified() in main/url-classifier-skip-urls The current transaction exceeded its q Message: InvalidStateError: IndexedDB: blocklists/gfx saveMetadata() IndexedDB: collections saveMetadata() in blocklists/gfx A mutation operation was attempted on a database that did not allow mutations. - Stack: - saveMetadata/<@resource://services-settings/Database.jsm:194:19 -executeIDB/promise<@resource://services-settings/IDBHelpers.jsm:134:16 -executeIDB@resource://services-settings/IDBHelpers.jsm:98:17 -executeIDB@resource://services-settings/Database.jsm:405:45 - -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: main/hijack-blocklists saveMetadata() IndexedDB: saveMetadata() in main/hijack-blocklists The current transaction exceeded its quota limitations. -console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: blocklists/plugins importBulk() IndexedDB: importBulk() in blocklists/plugins The current transaction exceeded its quota limitations. -console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: main/search-default-override-allowlist importBulk() IndexedDB: importBulk() in main/search-default-override-allowlist The current transaction exceeded its quota limitations. -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: main/public-suffix-list saveLastModified() IndexedDB: saveLastModified() in main/public-suffix-list The current transaction exceeded its quota limitations. -console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: main/language-dictionaries importBulk() IndexedDB: importBulk() in main/language-dictionaries The current transaction exceeded its quota limitations. -console.error: services.settings: - Message: InvalidStateError: IndexedDB: main/anti-tracking-url-decoration saveMetadata() IndexedDB: collections saveMetadata() in main/anti-tracking-url-decoration A mutation operation was attempted on a database that did not allow mutations. - Stack: - saveMetadata/<@resource://services-settings/Database.jsm:194:19 -executeIDB/promise<@resource://services-settings/IDBHelpers.jsm:134:16 -executeIDB@resource://services-settings/IDBHelpers.jsm:98:17 -executeIDB@resource://services-settings/Database.jsm:405:45 - -console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: main/sites-classification importBulk() IndexedDB: importBulk() in main/sites-classification The current transaction exceeded its quota limitations. -console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: pinning/pins saveLastModified() IndexedDB: saveLastModified() in pinning/pins The current transaction exceeded its quota limitations. -JavaScript error: , line 0: uncaught exception: Object -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: security-state/cert-revocations importBulk() IndexedDB: importBulk() in security-state/cert-revocations The current transaction exceeded its quota limitations. -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: main/normandy-recipes-capabilities importBulk() IndexedDB: importBulk() in main/normandy-recipes-capabilities The current transaction exceeded its quota limitations. -console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." -console.error: services.settings: - Message: QuotaExceededError: IndexedDB: security-state/intermedJavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -1619597014602 Marionette INFO Stopped listening on port 45113 -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: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -1619597015154 Marionette INFO Stopped listening on port 41935 -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: 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: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -1619597015643 Marionette INFO Stopped listening on port 38025 -1619597016101 Marionette INFO Stopped listening on port 39747 -1619597018068 Marionette INFO Stopped listening on port 33195 -1619597018501 Marionette INFO Stopped listening on port 35589 -1619597019061 Marionette INFO Stopped listening on port 38795 -1619597026736 geckodriver INFO Listening on 127.0.0.1:41489 -1619597027741 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFsKY48" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619597031457 Marionette INFO Listening on port 39073 -1619597031511 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 -1619597034682 Marionette INFO Stopped listening on port 39073 -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 -1619597042380 geckodriver INFO Listening on 127.0.0.1:50909 -1619597043384 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile31POeA" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619597046447 Marionette INFO Listening on port 38201 -1619597046466 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 -1619597050349 Marionette INFO Stopped listening on port 38201 -1619597056068 geckodriver INFO Listening on 127.0.0.1:44883 -1619597057073 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileY13o0C" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619597060102 Marionette INFO Listening on port 45251 -1619597060137 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619597068586 Marionette INFO Stopped listening on port 45251 -JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -1619597071213 geckodriver INFO Listening on 127.0.0.1:41397 -1619597072217 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePHbnPa" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619597075250 Marionette INFO Listening on port 44903 -1619597075289 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 -1619597079433 Marionette INFO Stopped listening on port 44903 -1619597083166 geckodriver INFO Listening on 127.0.0.1:53083 -1619597084170 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefCxrzP" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619597087359 Marionette INFO Listening on port 37105 -1619597087438 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 -1619597091666 Marionette INFO Stopped listening on port 37105 -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 -1619597098314 geckodriver INFO Listening on 127.0.0.1:39397 -1619597099318 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile96iaNW" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619597102452 Marionette INFO Listening on port 33757 -1619597102508 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 -1619597106847 Marionette INFO Stopped listening on port 33757 -1619597110546 geckodriver INFO Listening on 127.0.0.1:33043 -1619597111550 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileyF3XcF" -1619597114707 Marionette INFO Listening on port 35719 -1619597114742 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 -1619597119220 Marionette INFO Stopped listening on port 35719 -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 -1619597125950 geckodriver INFO Listening on 127.0.0.1:34269 -1619597126954 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepDEKJi" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619597130152 Marionette INFO Listening on port 42177 -1619597130252 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619597139916 Marionette INFO Stopped listening on port 42177 -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 -1619610508958 geckodriver INFO Listening on 127.0.0.1:55259 -1619610509962 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenPDx5l" -1619610514136 Marionette INFO Listening on port 36579 -1619610514231 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 -1619610517560 Marionette INFO Stopped listening on port 36579 -1619610528355 geckodriver INFO Listening on 127.0.0.1:50723 -1619610529360 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilej1JELt" -1619610532653 Marionette INFO Listening on port 33821 -1619610532759 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 -1619610536327 Marionette INFO Stopped listening on port 33821 -1619610543122 geckodriver INFO Listening on 127.0.0.1:45795 -1619610544126 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVlyDek" -1619610547942 Marionette INFO Listening on port 35713 -1619610548023 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619610556404 Marionette INFO Stopped listening on port 35713 -1619610565189 geckodriver INFO Listening on 127.0.0.1:58493 -1619610566193 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiwJfro" -1619610569716 Marionette INFO Listening on port 41609 -1619610569771 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 -1619610574357 Marionette INFO Stopped listening on port 41609 -1619610580096 geckodriver INFO Listening on 127.0.0.1:58569 -1619610581101 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileseKkPg" -1619610584591 Marionette INFO Listening on port 34547 -1619610584692 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 -1619610595685 Marionette INFO Stopped listening on port 34547 -1619610603692 geckodriver INFO Listening on 127.0.0.1:36543 -1619610604707 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePhzMgl" -1619610609003 Marionette INFO Listening on port 36837 -1619610609026 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 -1619610613874 Marionette INFO Stopped listening on port 36837 -1619610622681 geckodriver INFO Listening on 127.0.0.1:49499 -1619610623680 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoaxXAw" -1619610627096 Marionette INFO Listening on port 33395 -1619610627162 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 -1619610631378 Marionette INFO Stopped listening on port 33395 -1619610642182 geckodriver INFO Listening on 127.0.0.1:35393 -1619610643187 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehYEqfB" -1619610646581 Marionette INFO Listening on port 43141 -1619610646672 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619610655422 Marionette INFO Stopped listening on port 43141 -1619610927430 geckodriver INFO Listening on 127.0.0.1:54877 -1619610928434 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewvo9Ui" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619610931824 Marionette INFO Listening on port 43561 -1619610931904 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 -1619610935091 Marionette INFO Stopped listening on port 43561 -1619610937008 geckodriver INFO Listening on 127.0.0.1:57341 -1619610938012 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAWztaR" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619610941147 Marionette INFO Listening on port 35853 -1619610941173 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 -1619610945189 Marionette INFO Stopped listening on port 35853 -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 -1619610947101 geckodriver INFO Listening on 127.0.0.1:35371 -1619610948106 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1R4yCF" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619610951200 Marionette INFO Listening on port 42083 -1619610951279 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619610959688 Marionette INFO Stopped listening on port 42083 -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 -1619610961598 geckodriver INFO Listening on 127.0.0.1:55617 -1619610962603 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileydVlbB" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619610965607 Marionette INFO Listening on port 45829 -1619610965677 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 -1619610970097 Marionette INFO Stopped listening on port 45829 -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 -1619610972030 geckodriver INFO Listening on 127.0.0.1:34845 -1619610973035 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepoQfCN" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619610976316 Marionette INFO Listening on port 36063 -1619610976407 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 -1619610982463 Marionette INFO Stopped listening on port 36063 -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 -1619610984496 geckodriver INFO Listening on 127.0.0.1:51919 -1619610985501 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezOT797" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619610988510 Marionette INFO Listening on port 39407 -1619610988601 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 -1619610993737 Marionette INFO Stopped listening on port 39407 -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 -1619610995814 geckodriver INFO Listening on 127.0.0.1:51503 -1619610996818 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCjq8NM" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619610999865 Marionette INFO Listening on port 36659 -1619610999921 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 -1619611005885 Marionette INFO Stopped listening on port 36659 -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 -1619611007978 geckodriver INFO Listening on 127.0.0.1:33563 -1619611008982 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileA7Clbw" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611012016 Marionette INFO Listening on port 44549 -1619611012079 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619611021033 Marionette INFO Stopped listening on port 44549 -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 -1619611417591 geckodriver INFO Listening on 127.0.0.1:56665 -1619611418594 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3ZDzPq" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611423075 Marionette INFO Listening on port 45453 -1619611423130 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 -1619611426615 Marionette INFO Stopped listening on port 45453 -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 -1619611428517 geckodriver INFO Listening on 127.0.0.1:36195 -1619611429522 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2jOKMf" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611432499 Marionette INFO Listening on port 46871 -1619611432596 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 -1619611436465 Marionette INFO Stopped listening on port 46871 -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 -1619611438278 geckodriver INFO Listening on 127.0.0.1:60341 -1619611439281 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilengq1tr" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611442545 Marionette INFO Listening on port 44785 -1619611442566 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619611451665 Marionette INFO Stopped listening on port 44785 -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 -1619611453511 geckodriver INFO Listening on 127.0.0.1:46043 -1619611454516 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehhHiB1" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611457543 Marionette INFO Listening on port 34573 -1619611457597 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 -1619611462065 Marionette INFO Stopped listening on port 34573 -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: Object1619611463860 geckodriver INFO Listening on 127.0.0.1:41187 -1619611464864 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilervDnDA" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611467832 Marionette INFO Listening on port 42847 -1619611467859 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 -1619611472330 Marionette INFO Stopped listening on port 42847 -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 -1619611474188 geckodriver INFO Listening on 127.0.0.1:34343 -1619611475193 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7tKZz8" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611478231 Marionette INFO Listening on port 35677 -1619611478270 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 -1619611488436 Marionette INFO Stopped listening on port 35677 -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 -1619611490092 geckodriver INFO Listening on 127.0.0.1:35539 -1619611491092 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecyk2b7" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611494050 Marionette INFO Listening on port 40603 -1619611494088 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 -1619611498590 Marionette INFO Stopped listening on port 40603 -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 -1619611500419 geckodriver INFO Listening on 127.0.0.1:44505 -1619611501421 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesUKMgd" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611504545 Marionette INFO Listening on port 46783 -1619611504610 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619611513982 Marionette INFO Stopped listening on port 46783 -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 -1619611590201 geckodriver INFO Listening on 127.0.0.1:37459 -1619611591205 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZsTg5q" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611594448 Marionette INFO Listening on port 44919 -1619611594530 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 -1619611597666 Marionette INFO Stopped listening on port 44919 -1619611599554 geckodriver INFO Listening on 127.0.0.1:40975 -1619611600558 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileztgKr5" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611603598 Marionette INFO Listening on port 40987 -1619611603626 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 -1619611607737 Marionette INFO Stopped listening on port 40987 -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 -1619611609565 geckodriver INFO Listening on 127.0.0.1:56891 -1619611610569 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileK9dxYI" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611613576 Marionette INFO Listening on port 34237 -1619611613639 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619611622023 Marionette INFO Stopped listening on port 34237 -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 -1619611624296 geckodriver INFO Listening on 127.0.0.1:54677 -1619611625294 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileC49lKc" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611628370 Marionette INFO Listening on port 38825 -1619611628462 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 -1619611632824 Marionette INFO Stopped listening on port 38825 -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 -1619611634611 geckodriver INFO Listening on 127.0.0.1:40913 -1619611635615 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLVVGUo" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611638613 Marionette INFO Listening on port 33375 -1619611638709 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 -1619611645550 Marionette INFO Stopped listening on port 33375 -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 -1619611647455 geckodriver INFO Listening on 127.0.0.1:42211 -1619611648460 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilec0DbQf" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611651473 Marionette INFO Listening on port 43995 -1619611651520 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 -1619611661648 Marionette INFO Stopped listening on port 43995 -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 -1619611662636 geckodriver INFO Listening on 127.0.0.1:59251 -1619611663630 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileC9ppgP" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611668681 Marionette INFO Listening on port 36337 -1619611668808 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 -1619611678634 Marionette INFO Stopped listening on port 36337 -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 -1619611679785 geckodriver INFO Listening on 127.0.0.1:38503 -1619611680786 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFSWk1d" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619611683981 Marionette INFO Listening on port 38735 -1619611684002 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619611693107 Marionette INFO Stopped listening on port 38735 -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 -1619615981926 geckodriver INFO Listening on 127.0.0.1:49387 -1619615982930 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilew2sMmT" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619615986096 Marionette INFO Listening on port 35843 -1619615986128 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 -1619615989238 Marionette INFO Stopped listening on port 35843 -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 -1619615990006 geckodriver INFO Listening on 127.0.0.1:55335 -1619615991009 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewuChJY" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619615995511 Marionette INFO Listening on port 44511 -1619615995606 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 -1619615999565 Marionette INFO Stopped listening on port 44511 -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: uncaugh1619616000331 geckodriver INFO Listening on 127.0.0.1:35063 -1619616001329 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2xgXST" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616004346 Marionette INFO Listening on port 41087 -1619616004408 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619616012609 Marionette INFO Stopped listening on port 41087 -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 -1619616013278 geckodriver INFO Listening on 127.0.0.1:59913 -1619616014282 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletYmBQn" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616017235 Marionette INFO Listening on port 39153 -1619616017335 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 -1619616021592 Marionette INFO Stopped listening on port 39153 -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 -1619616022367 geckodriver INFO Listening on 127.0.0.1:53029 -1619616023371 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6PXKfJ" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616026348 Marionette INFO Listening on port 45269 -1619616026431 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 -1619616027717 Marionette INFO Stopped listening on port 45269 -1619616030693 geckodriver INFO Listening on 127.0.0.1:46275 -1619616031698 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2A2NSv" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616034702 Marionette INFO Listening on port 41303 -1619616034786 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 -1619616036582 Marionette INFO Stopped listening on port 41303 -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 -1619616037333 geckodriver INFO Listening on 127.0.0.1:51341 -1619616038337 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGuyi9K" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616041400 Marionette INFO Listening on port 40243 -1619616041424 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 -1619616043053 Marionette INFO Stopped listening on port 40243 -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 -1619616043802 geckodriver INFO Listening on 127.0.0.1:41469 -1619616044807 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerrbepW" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616047841 Marionette INFO Listening on port 34667 -1619616047873 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619616050302 Marionette INFO Stopped listening on port 34667 -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 -1619616872133 geckodriver INFO Listening on 127.0.0.1:50845 -1619616873137 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5IAYns" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616876184 Marionette INFO Listening on port 36929 -1619616876289 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 -1619616879661 Marionette INFO Stopped listening on port 36929 -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 -1619616880314 geckodriver INFO Listening on 127.0.0.1:50459 -1619616881319 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAomiLE" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616884381 Marionette INFO Listening on port 41765 -1619616884394 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 -1619616888285 Marionette INFO Stopped listening on port 41765 -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 -1619616888948 geckodriver INFO Listening on 127.0.0.1:51187 -1619616889951 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelvxFK7" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616892966 Marionette INFO Listening on port 43767 -1619616893041 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619616901342 Marionette INFO Stopped listening on port 43767 -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: 1619616902025 geckodriver INFO Listening on 127.0.0.1:48505 -1619616903029 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3arDrE" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616906090 Marionette INFO Listening on port 46773 -1619616906195 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 -1619616910787 Marionette INFO Stopped listening on port 46773 -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 -1619616911548 geckodriver INFO Listening on 127.0.0.1:51667 -1619616912551 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCdSVvk" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616915600 Marionette INFO Listening on port 38579 -1619616915661 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 -1619616922239 Marionette INFO Stopped listening on port 38579 -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 -1619616923037 geckodriver INFO Listening on 127.0.0.1:53903 -1619616924041 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9Ijupr" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616927090 Marionette INFO Listening on port 44953 -1619616927116 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 -1619616937286 Marionette INFO Stopped listening on port 44953 -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 -1619616938052 geckodriver INFO Listening on 127.0.0.1:42505 -1619616939056 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemzNmCa" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616942181 Marionette INFO Listening on port 40081 -1619616942237 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 -1619616948447 Marionette INFO Stopped listening on port 40081 -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 -1619616949191 geckodriver INFO Listening on 127.0.0.1:60845 -1619616950195 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerOzzNk" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1619616953277 Marionette INFO Listening on port 46061 -1619616953399 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619616962815 Marionette INFO Stopped listening on port 46061 -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 -1619618656829 geckodriver INFO Listening on 127.0.0.1:49879 -1619618657833 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXWKVXo" -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 -console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeded its quota limitations." -1619618660666 Marionette INFO Listening on port 41389 -1619618660685 Marionette WARN TLS certificate errors will be ignored for this session -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." -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: (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: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619618663304 Marionette INFO Stopped listening on port 41389 -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 -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 -1619618663821 geckodriver INFO Listening on 127.0.0.1:59983 -1619618664824 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile025KcZ" -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." -1619618667674 Marionette INFO Listening on port 38827 -1619618667703 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: (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: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619618671392 Marionette INFO Stopped listening on port 38827 -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 exceptio1619618672021 geckodriver INFO Listening on 127.0.0.1:35455 -1619618673024 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGsO61h" -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 -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. -1619618675896 Marionette INFO Listening on port 45055 -1619618675990 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: (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: 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 -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619618683338 Marionette INFO Stopped listening on port 45055 -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 -JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -1619618683928 geckodriver INFO Listening on 127.0.0.1:49579 -1619618684933 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYCKFBO" -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." -1619618687962 Marionette INFO Listening on port 40543 -1619618687992 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: Typ1619618692170 geckodriver INFO Listening on 127.0.0.1:33027 -1619618693174 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileHfT67i" -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 -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. -1619618696051 Marionette INFO Listening on port 42973 -1619618696136 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: (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: 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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full -1619618702056 Marionette INFO Stopped listening on port 42973 -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 -1619618702653 geckodriver INFO Listening on 127.0.0.1:51353 -1619618703656 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezSXIet" -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." -1619618706666 Marionette INFO Listening on port 37159 -1619618706731 Marionette WARN TLS certificate errors will be ignored for this session -console.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() The current transaction exceeJavaScript 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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619618716114 Marionette INFO Stopped listening on port 37159 -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 -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 -1619618716730 geckodriver INFO Listening on 127.0.0.1:55949 -1619618717740 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejH7uFs" -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 -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. -1619618720634 Marionette INFO Listening on port 37795 -1619618720715 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: (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: 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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619618726054 Marionette INFO Stopped listening on port 37795 -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: , 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 -1619618726587 geckodriver INFO Listening on 127.0.0.1:40665 -1619618727589 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1FtL8h" -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." -1619618730614 Marionette INFO Listening on port 46603 -1619618730660 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: (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: 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 -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619618739017 Marionette INFO Stopped listening on port 46603 -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 -JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -1619618765880 geckodriver INFO Listening on 127.0.0.1:55371 -1619618766882 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileR88aOg" -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." -1619618771564 Marionette INFO Listening on port 39317 -1619618771601 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -console.error: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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619618775225 Marionette INFO Stopped listening on port 39317 -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 -1619618775972 geckodriver INFO Listening on 127.0.0.1:58541 -1619618776977 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSFwKvV" -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." -1619618781048 Marionette INFO Listening on port 36987 -1619618781136 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)")) "" -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: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619618784274 Marionette INFO Stopped listening on port 36987 -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 -1619618784749 geckodriver INFO Listening on 127.0.0.1:45313 -1619618785754 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileEvCUbh" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call 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: , line 0: uncaught exception: Object -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." -1619618790833 Marionette INFO Listening on port 44939 -1619618790851 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/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)")) "" -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: 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 -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 -1619618798652 Marionette INFO Stopped listening on port 44939 -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/mod1619618799156 geckodriver INFO Listening on 127.0.0.1:53787 -1619618800160 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiQ8QBg" -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." -1619618804109 Marionette INFO Listening on port 46359 -1619618804162 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: (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: 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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619618809233 Marionette INFO Stopped listening on port 46359 -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: , line 0: uncaught exception: Object -JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -1619618809720 geckodriver INFO Listening on 127.0.0.1:60717 -1619618810726 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1yR4M3" -JavaScript error: , line 0: uncaught exception: Object -JavaScript error: undefined, line 0: Error: An unexpected error occurred -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." -1619618814254 Marionette INFO Listening on port 37313 -1619618814282 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: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887)) -JavaScript 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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full -1619618820419 Marionette INFO Stopped listening on port 37313 -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 -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 -1619618821121 geckodriver INFO Listening on 127.0.0.1:35021 -1619618822126 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePwuaG2" -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." -1619618826720 Marionette INFO Listening on port 42565 -1619618826759 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: (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 -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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619618837688 Marionette INFO Stopped listening on port 42565 -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: , lin1619618838317 geckodriver INFO Listening on 127.0.0.1:34381 -1619618839321 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiFELWy" -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." -1619618843514 Marionette INFO Listening on port 43391 -1619618843526 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: (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 -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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619618849404 Marionette INFO Stopped listening on port 43391 -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: , 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 -1619618850011 geckodriver INFO Listening on 127.0.0.1:42329 -1619618851014 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2wG6FL" -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." -1619618855046 Marionette INFO Listening on port 39677 -1619618855078 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: TypeErrJavaScript 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: 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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619618864841 Marionette INFO Stopped listening on port 39677 -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 -1619619493077 geckodriver INFO Listening on 127.0.0.1:38655 -1619619494080 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileL3avC1" -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." -1619619497823 Marionette INFO Listening on port 39089 -1619619497877 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: (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/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 -1619619501282 Marionette INFO Stopped listening on port 39089 -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -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 l1619619501978 geckodriver INFO Listening on 127.0.0.1:57863 -1619619502984 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledp6hdu" -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." -1619619508440 Marionette INFO Listening on port 38783 -1619619508523 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 -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 -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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619619512363 Marionette INFO Stopped listening on port 38783 -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 -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 -1619619512846 geckodriver INFO Listening on 127.0.0.1:46659 -1619619513849 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiler8Vt5f" -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 -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. -1619619516904 Marionette INFO Listening on port 41481 -1619619516929 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: (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: 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 -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619619524669 Marionette INFO Stopped listening on port 41481 -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 -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 -1619619525293 geckodriver INFO Listening on 127.0.0.1:50577 -1619619526298 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevby8op" -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." -1619619529334 Marionette INFO Listening on port 38179 -1619619529366 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: (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: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619619533205 Marionette INFO Stopped listening on port 38179 -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 limi1619619533821 geckodriver INFO Listening on 127.0.0.1:34797 -1619619534826 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOVka11" -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 -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. -1619619537831 Marionette INFO Listening on port 37047 -1619619537903 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: (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: 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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full -1619619544069 Marionette INFO Stopped listening on port 37047 -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 -1619619544735 geckodriver INFO Listening on 127.0.0.1:54579 -1619619545738 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexYm1Aa" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call 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: , line 0: uncaught exception: Object -console.error: PushService: - stateChangeProcessEnqueue: Error transitioning state - QuotaExceededError -JavaScript error: , line 0: QuotaExceededError: The current transaction 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 -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 -1619619558758 Marionette INFO Stopped listening on port 35917 -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 -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 -1619619559226 geckodriver INFO Listening on 127.0.0.1:59101 -1619619560230 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileF90AXc" -JavaScript error: undefined, line 0: Error: An unexpected error occurred -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." -1619619564373 Marionette INFO Listening on port 43751 -1619619564431 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: (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: 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/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -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 -1619619570918 Marionette INFO Stopped listening on port 43751 -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: QuotaExceededErro1619619571444 geckodriver INFO Listening on 127.0.0.1:39431 -1619619572448 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqD7EJr" -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." -1619619576022 Marionette INFO Listening on port 41139 -1619619576090 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: (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: 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 -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined -1619619586087 Marionette INFO Stopped listening on port 41139 -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 -1619619655234 geckodriver INFO Listening on 127.0.0.1:39753 -1619619656258 geckodriver INFO Listening on 127.0.0.1:36449 -1619619657278 geckodriver INFO Listening on 127.0.0.1:40905 -1619619658284 geckodriver INFO Listening on 127.0.0.1:51337 -1619619659290 geckodriver INFO Listening on 127.0.0.1:40933 -1619619660300 geckodriver INFO Listening on 127.0.0.1:54445 -1619619661306 geckodriver INFO Listening on 127.0.0.1:32925 -1619619662324 geckodriver INFO Listening on 127.0.0.1:48321 -1619619735472 geckodriver INFO Listening on 127.0.0.1:54933 -1619619736476 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileU1E9ud" -1619619740645 Marionette INFO Listening on port 38449 -1619619740707 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 -1619619743698 Marionette INFO Stopped listening on port 38449 -1619619753378 geckodriver INFO Listening on 127.0.0.1:57329 -1619619754382 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileyqSZeS" -1619619758018 Marionette INFO Listening on port 38545 -1619619758066 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 -1619619761747 Marionette INFO Stopped listening on port 38545 -1619619766624 geckodriver INFO Listening on 127.0.0.1:59583 -1619619767628 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilensrKHd" -1619619771152 Marionette INFO Listening on port 33601 -1619619771219 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619619778923 Marionette INFO Stopped listening on port 33601 -1619619784797 geckodriver INFO Listening on 127.0.0.1:60117 -1619619785801 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecqhmq7" -1619619789271 Marionette INFO Listening on port 38757 -1619619789297 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 -1619619793475 Marionette INFO Stopped listening on port 38757 -1619619802316 geckodriver INFO Listening on 127.0.0.1:52863 -1619619803320 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilem2LGSW" -1619619807059 Marionette INFO Listening on port 35519 -1619619807111 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 -1619619813463 Marionette INFO Stopped listening on port 35519 -1619619819405 geckodriver INFO Listening on 127.0.0.1:39481 -1619619820409 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileT2gUXu" -1619619823967 Marionette INFO Listening on port 40063 -1619619824007 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 -1619619833810 Marionette INFO Stopped listening on port 40063 -1619619843667 geckodriver INFO Listening on 127.0.0.1:34699 -1619619844672 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJ95FoR" -1619619848292 Marionette INFO Listening on port 38927 -1619619848391 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 -1619619854874 Marionette INFO Stopped listening on port 38927 -1619619863840 geckodriver INFO Listening on 127.0.0.1:58597 -1619619864844 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0g8TfC" -1619619868408 Marionette INFO Listening on port 35275 -1619619868458 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619619877151 Marionette INFO Stopped listening on port 35275 -1619620445630 geckodriver INFO Listening on 127.0.0.1:42245 -1619620446633 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileo7lGfB" - -###!!! [Child][MessageChannel] Error: (msgtype=0xFFF7,name=) Channel error: cannot send/recv - -1619620454188 geckodriver INFO Listening on 127.0.0.1:34725 -1619620455192 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8tlStq" -1619620458378 Marionette INFO Listening on port 45705 -1619620458399 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 -1619620461475 Marionette INFO Stopped listening on port 45705 -1619620469228 geckodriver INFO Listening on 127.0.0.1:39951 -1619620470224 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5MtiOS" -1619620473263 Marionette INFO Listening on port 42481 -1619620473278 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 -1619620476713 Marionette INFO Stopped listening on port 42481 -1619620483450 geckodriver INFO Listening on 127.0.0.1:50773 -1619620484447 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileX6ejrl" -1619620487905 Marionette INFO Listening on port 36955 -1619620487930 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619620495887 Marionette INFO Stopped listening on port 36955 -1619620499678 geckodriver INFO Listening on 127.0.0.1:39113 -1619620500681 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4VzNEd" -1619620503957 Marionette INFO Listening on port 34747 -1619620503976 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 -1619620508448 Marionette INFO Stopped listening on port 34747 -1619620514267 geckodriver INFO Listening on 127.0.0.1:51825 -1619620515271 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecta4I0" -1619620518434 Marionette INFO Listening on port 34935 -1619620518524 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 -1619620524740 Marionette INFO Stopped listening on port 34935 -1619620530640 geckodriver INFO Listening on 127.0.0.1:43759 -1619620531645 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6Clgfe" -1619620534818 Marionette INFO Listening on port 42627 -1619620534910 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 -1619620544656 Marionette INFO Stopped listening on port 42627 -1619620554368 geckodriver INFO Listening on 127.0.0.1:40361 -1619620555372 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDRIxRx" -1619620558595 Marionette INFO Listening on port 35565 -1619620558652 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 -1619620564972 Marionette INFO Stopped listening on port 35565 -1619620574811 geckodriver INFO Listening on 127.0.0.1:49785 -1619620575814 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGIvkjy" -1619620579151 Marionette INFO Listening on port 37705 -1619620579221 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619620587933 Marionette INFO Stopped listening on port 37705 -1619620687628 geckodriver INFO Listening on 127.0.0.1:55877 -1619620688631 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiley4DNXY" -1619620691875 Marionette INFO Listening on port 43831 -1619620691909 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 -1619620694902 Marionette INFO Stopped listening on port 43831 -1619620698719 geckodriver INFO Listening on 127.0.0.1:48117 -1619620699722 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileamdNkK" -1619620703101 Marionette INFO Listening on port 43107 -1619620703128 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 -1619620706516 Marionette INFO Stopped listening on port 43107 -1619620710250 geckodriver INFO Listening on 127.0.0.1:41927 -1619620711254 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8R5Hd8" -1619620714369 Marionette INFO Listening on port 38803 -1619620714451 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619620722078 Marionette INFO Stopped listening on port 38803 -1619620731829 geckodriver INFO Listening on 127.0.0.1:33737 -1619620732833 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepNJNZK" -1619620736046 Marionette INFO Listening on port 44923 -1619620736124 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 -1619620740082 Marionette INFO Stopped listening on port 44923 -1619620741816 geckodriver INFO Listening on 127.0.0.1:57759 -1619620742820 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexMPAXn" -1619620745917 Marionette INFO Listening on port 35235 -1619620745989 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 -1619620752198 Marionette INFO Stopped listening on port 35235 -1619620757040 geckodriver INFO Listening on 127.0.0.1:57891 -1619620758036 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiSjyJm" -1619620761051 Marionette INFO Listening on port 44171 -1619620761117 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 -1619620770811 Marionette INFO Stopped listening on port 44171 -1619620782833 geckodriver INFO Listening on 127.0.0.1:32775 -1619620783836 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehZJN6G" -1619620786989 Marionette INFO Listening on port 37189 -1619620787028 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 -1619620793413 Marionette INFO Stopped listening on port 37189 -1619620799354 geckodriver INFO Listening on 127.0.0.1:37609 -1619620800352 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile02gskA" -1619620803377 Marionette INFO Listening on port 45461 -1619620803420 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1619620811735 Marionette INFO Stopped listening on port 45461 -1620110736639 geckodriver INFO Listening on 127.0.0.1:54307 -1620110737629 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiler7iXmg" -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. - -###!!! [Child][MessageChannel] Error: (msgtype=0xFFF7,name=) Channel error: cannot send/recv - -1620110750192 geckodriver INFO Listening on 127.0.0.1:41193 -1620110751197 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexPP2Lg" -1620110756066 Marionette INFO Listening on port 32873 -1620110756132 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 -1620110758924 Marionette INFO Stopped listening on port 32873 -1620110791880 geckodriver INFO Listening on 127.0.0.1:36637 -1620110792887 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNdfB0P" -1620110796930 Marionette INFO Listening on port 39499 -1620110796983 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 -1620110802700 Marionette INFO Stopped listening on port 39499 -1620110806359 geckodriver INFO Listening on 127.0.0.1:50499 -1620110807361 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoGf8cA" -1620110810390 Marionette INFO Listening on port 42627 -1620110810450 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 -1620110814358 Marionette INFO Stopped listening on port 42627 -1620110823000 geckodriver INFO Listening on 127.0.0.1:58355 -1620110824003 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWKd5H8" -1620110827022 Marionette INFO Listening on port 40445 -1620110827118 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 -1620110834454 Marionette INFO Stopped listening on port 40445 -1620110841096 geckodriver INFO Listening on 127.0.0.1:51849 -1620110842100 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebCVplr" -1620110845165 Marionette INFO Listening on port 39091 -1620110845255 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 -1620110851132 Marionette INFO Stopped listening on port 39091 -1620110856891 geckodriver INFO Listening on 127.0.0.1:34843 -1620110857894 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejHDaZR" -1620110860928 Marionette INFO Listening on port 43785 -1620110861014 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 -1620110867031 Marionette INFO Stopped listening on port 43785 -1620110883170 geckodriver INFO Listening on 127.0.0.1:60479 -1620110884174 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMJPFxz" -1620110887688 Marionette INFO Listening on port 46141 -1620110887754 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 -1620110899790 Marionette INFO Stopped listening on port 46141 -1620110908597 geckodriver INFO Listening on 127.0.0.1:45469 -1620110909601 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8a3uY2" -1620110912858 Marionette INFO Listening on port 33211 -1620110912889 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 -1620110924798 Marionette INFO Stopped listening on port 33211 -1620110930566 geckodriver INFO Listening on 127.0.0.1:56043 -1620110931569 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKNhV8V" -1620110934587 Marionette INFO Listening on port 33095 -1620110934655 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 -1620110946461 Marionette INFO Stopped listening on port 33095 -1620110949166 geckodriver INFO Listening on 127.0.0.1:52109 -1620110950168 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesz4111" -1620110953177 Marionette INFO Listening on port 33805 -1620110953273 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 -1620110965090 Marionette INFO Stopped listening on port 33805 -1620111753262 geckodriver INFO Listening on 127.0.0.1:51217 -1620111754266 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile26fEwZ" -1620111757467 Marionette INFO Listening on port 43089 -1620111757545 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 -1620111760410 Marionette INFO Stopped listening on port 43089 -1620111770083 geckodriver INFO Listening on 127.0.0.1:47029 -1620111771085 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileuKvw5M" -1620111774501 Marionette INFO Listening on port 40995 -1620111774575 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 -1620111778074 Marionette INFO Stopped listening on port 40995 -1620111787841 geckodriver INFO Listening on 127.0.0.1:45391 -1620111788844 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSNn3SP" -1620111791974 Marionette INFO Listening on port 38543 -1620111792020 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620111800515 Marionette INFO Stopped listening on port 38543 -1620111805249 geckodriver INFO Listening on 127.0.0.1:55563 -1620111806252 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTu5w4d" -1620111809296 Marionette INFO Listening on port 34191 -1620111809337 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 -1620111813269 Marionette INFO Stopped listening on port 34191 -1620111819018 geckodriver INFO Listening on 127.0.0.1:44417 -1620111820023 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaWFHD6" -1620111823010 Marionette INFO Listening on port 43527 -1620111823139 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 -1620111829266 Marionette INFO Stopped listening on port 43527 -1620111838140 geckodriver INFO Listening on 127.0.0.1:34455 -1620111839145 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiled8elmj" -1620111842188 Marionette INFO Listening on port 38787 -1620111842201 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 -1620111851920 Marionette INFO Stopped listening on port 38787 -1620111862564 geckodriver INFO Listening on 127.0.0.1:35837 -1620111863568 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQPH4mq" -1620111866729 Marionette INFO Listening on port 46107 -1620111866757 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 -1620111872918 Marionette INFO Stopped listening on port 46107 -1620111883843 geckodriver INFO Listening on 127.0.0.1:41723 -1620111884846 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesZ5IoN" -1620111887910 Marionette INFO Listening on port 41927 -1620111887926 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620111896478 Marionette INFO Stopped listening on port 41927 -1620119899680 geckodriver INFO Listening on 127.0.0.1:45319 -1620119900684 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZ6N86p" -1620119905252 Marionette INFO Listening on port 33675 -1620119905291 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 -1620119908537 Marionette INFO Stopped listening on port 33675 -1620119912261 geckodriver INFO Listening on 127.0.0.1:33977 -1620119913265 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCd8tky" -1620119916593 Marionette INFO Listening on port 34713 -1620119916676 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 -1620119921213 Marionette INFO Stopped listening on port 34713 -1620119925072 geckodriver INFO Listening on 127.0.0.1:50139 -1620119926075 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9EZFzK" -1620119930131 Marionette INFO Listening on port 41957 -1620119930167 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620119937975 Marionette INFO Stopped listening on port 41957 -1620119942790 geckodriver INFO Listening on 127.0.0.1:33109 -1620119943794 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7RIzhb" -1620119947985 Marionette INFO Listening on port 33015 -1620119948002 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 -1620119952058 Marionette INFO Stopped listening on port 33015 -1620119958006 geckodriver INFO Listening on 127.0.0.1:33205 -1620119959010 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenp2HNy" -1620119962077 Marionette INFO Listening on port 37995 -1620119962180 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 -1620119968524 Marionette INFO Stopped listening on port 37995 -1620119978349 geckodriver INFO Listening on 127.0.0.1:58709 -1620119979352 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoyEtEO" -1620119982592 Marionette INFO Listening on port 44545 -1620119982638 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 -1620119992370 Marionette INFO Stopped listening on port 44545 -1620119996205 geckodriver INFO Listening on 127.0.0.1:33955 -1620119997208 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecKn6gB" -1620120000399 Marionette INFO Listening on port 35071 -1620120000502 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 -1620120007986 Marionette INFO Stopped listening on port 35071 -1620120016793 geckodriver INFO Listening on 127.0.0.1:53527 -1620120017797 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3LL7LN" -1620120022701 Marionette INFO Listening on port 40349 -1620120022793 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620120031586 Marionette INFO Stopped listening on port 40349 -1620300897263 geckodriver INFO Listening on 127.0.0.1:47359 -1620300898267 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMWe57T" -1620300905145 Marionette INFO Listening on port 41519 -1620300905189 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620300909780 Marionette INFO Stopped listening on port 41519 -1620300917503 geckodriver INFO Listening on 127.0.0.1:39695 -1620300918506 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqLU9sw" -1620300921715 Marionette INFO Listening on port 43181 -1620300921794 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620300925564 Marionette INFO Stopped listening on port 43181 -1620300931302 geckodriver INFO Listening on 127.0.0.1:58665 -1620300932306 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0r0eEv" -1620300935525 Marionette INFO Listening on port 38033 -1620300935595 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620300945385 Marionette INFO Stopped listening on port 38033 -1620300950411 geckodriver INFO Listening on 127.0.0.1:39345 -1620300951414 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0IrTVk" -1620300956366 Marionette INFO Listening on port 40633 -1620300956409 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620300963563 Marionette INFO Stopped listening on port 40633 -1620300967277 geckodriver INFO Listening on 127.0.0.1:57785 -1620300968282 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDSccj8" -1620300972767 Marionette INFO Listening on port 45919 -1620300972806 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620300980015 Marionette INFO Stopped listening on port 45919 -1620304593471 geckodriver INFO Listening on 127.0.0.1:44821 -1620304594475 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqhL37c" -1620304598473 Marionette INFO Listening on port 44779 -1620304598551 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620304604039 Marionette INFO Stopped listening on port 44779 -1620304609819 geckodriver INFO Listening on 127.0.0.1:50881 -1620304610823 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqgfr6W" -1620304614447 Marionette INFO Listening on port 35347 -1620304614504 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620304618916 Marionette INFO Stopped listening on port 35347 -1620304627695 geckodriver INFO Listening on 127.0.0.1:56031 -1620304628699 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRrVVJ5" -1620304633581 Marionette INFO Listening on port 39117 -1620304633609 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620304636862 Marionette INFO Stopped listening on port 39117 -1620304644830 geckodriver INFO Listening on 127.0.0.1:46159 -1620304645833 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevowZBj" -1620304650618 Marionette INFO Listening on port 43665 -1620304650676 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620304657851 Marionette INFO Stopped listening on port 43665 -1620304661602 geckodriver INFO Listening on 127.0.0.1:47297 -1620304662605 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehkaLWr" -1620304666380 Marionette INFO Listening on port 44889 -1620304666404 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620304668515 Marionette INFO Stopped listening on port 44889 -1620304887082 geckodriver INFO Listening on 127.0.0.1:60687 -1620304888086 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefhQQ06" -1620304891417 Marionette INFO Listening on port 38257 -1620304891462 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620304895586 Marionette INFO Stopped listening on port 38257 -1620304900445 geckodriver INFO Listening on 127.0.0.1:42359 -1620304901449 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileenkxvV" -1620304907182 Marionette INFO Listening on port 45839 -1620304907274 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620304911886 Marionette INFO Stopped listening on port 45839 -1620304915654 geckodriver INFO Listening on 127.0.0.1:39749 -1620304916657 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileL2AgJj" -1620305339030 geckodriver INFO Listening on 127.0.0.1:47821 -1620305340034 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilew28OaX" -1620305344969 Marionette INFO Listening on port 46343 -1620305345043 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620305349053 Marionette INFO Stopped listening on port 46343 -1620305352798 geckodriver INFO Listening on 127.0.0.1:34777 -1620305353802 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0wyQBx" -1620305357016 Marionette INFO Listening on port 39241 -1620305357096 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620305362256 Marionette INFO Stopped listening on port 39241 -1620305371006 geckodriver INFO Listening on 127.0.0.1:53445 -1620305372009 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOXM3FI" -1620305375378 Marionette INFO Listening on port 34629 -1620305375393 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620305382221 Marionette INFO Stopped listening on port 34629 -1620305386974 geckodriver INFO Listening on 127.0.0.1:51255 -1620305387978 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileR9zSix" -1620305391174 Marionette INFO Listening on port 37141 -1620305391252 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620305393373 Marionette INFO Stopped listening on port 37141 -1620305397301 geckodriver INFO Listening on 127.0.0.1:50407 -1620305398305 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepTSUnI" -1620305401513 Marionette INFO Listening on port 34809 -1620305401597 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620305404429 Marionette INFO Stopped listening on port 34809 -1620305472419 geckodriver INFO Listening on 127.0.0.1:33641 -1620305473424 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileN1hHip" -1620305477442 Marionette INFO Listening on port 38423 -1620305477516 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620305481527 Marionette INFO Stopped listening on port 38423 -1620305488276 geckodriver INFO Listening on 127.0.0.1:53885 -1620305489280 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileP1U5j4" -1620305492496 Marionette INFO Listening on port 37637 -1620305492557 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620305496688 Marionette INFO Stopped listening on port 37637 -1620305506369 geckodriver INFO Listening on 127.0.0.1:45859 -1620305507373 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeFu19p" -1620305511222 Marionette INFO Listening on port 39469 -1620305511265 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620305517830 Marionette INFO Stopped listening on port 39469 -1620305518862 geckodriver INFO Listening on 127.0.0.1:60197 -1620305519865 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile33n8WT" -1620305523613 Marionette INFO Listening on port 46055 -1620305523671 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620305526013 Marionette INFO Stopped listening on port 46055 -1620305527079 geckodriver INFO Listening on 127.0.0.1:52179 -1620305528082 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilec8t4KY" -1620305531889 Marionette INFO Listening on port 42651 -1620305531981 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620305538477 Marionette INFO Stopped listening on port 42651 -1620306127188 geckodriver INFO Listening on 127.0.0.1:34727 -1620306128192 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9lsLUC" -1620306132013 Marionette INFO Listening on port 42685 -1620306132117 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620306136717 Marionette INFO Stopped listening on port 42685 -1620306144379 geckodriver INFO Listening on 127.0.0.1:36027 -1620306145383 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMTDJMu" -1620306149388 Marionette INFO Listening on port 33027 -1620306149424 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620306153415 Marionette INFO Stopped listening on port 33027 -1620306162037 geckodriver INFO Listening on 127.0.0.1:56197 -1620306163044 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepz781G" -1620306167187 Marionette INFO Listening on port 34747 -1620306167265 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620306173852 Marionette INFO Stopped listening on port 34747 -1620306177599 geckodriver INFO Listening on 127.0.0.1:41611 -1620306178602 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecQuHoo" -1620306181759 Marionette INFO Listening on port 37493 -1620306181779 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620306189426 Marionette INFO Stopped listening on port 37493 -1620306193103 geckodriver INFO Listening on 127.0.0.1:58623 -1620306194108 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejuL15s" -1620306197348 Marionette INFO Listening on port 41953 -1620306197400 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620306204790 Marionette INFO Stopped listening on port 41953 -1620306878659 geckodriver INFO Listening on 127.0.0.1:42639 -1620306879664 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileM0CtIy" -1620306882851 Marionette INFO Listening on port 45053 -1620306882950 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620306887271 Marionette INFO Stopped listening on port 45053 -1620306891081 geckodriver INFO Listening on 127.0.0.1:45049 -1620306892085 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegWCbRq" -1620306895479 Marionette INFO Listening on port 34131 -1620306895572 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620306899989 Marionette INFO Stopped listening on port 34131 -1620306905834 geckodriver INFO Listening on 127.0.0.1:36101 -1620306906838 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekf4C17" -1620306910037 Marionette INFO Listening on port 44421 -1620306910144 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620306916766 Marionette INFO Stopped listening on port 44421 -1620306924492 geckodriver INFO Listening on 127.0.0.1:36823 -1620306925497 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5WfCki" -1620306928707 Marionette INFO Listening on port 42973 -1620306928763 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620306937110 Marionette INFO Stopped listening on port 42973 -1620306946873 geckodriver INFO Listening on 127.0.0.1:58069 -1620306947877 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemNViFj" -1620306951223 Marionette INFO Listening on port 41765 -1620306951265 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620306957982 Marionette INFO Stopped listening on port 41765 -1620307774250 geckodriver INFO Listening on 127.0.0.1:56703 -1620307775254 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7dOTzh" -1620307778368 Marionette INFO Listening on port 42079 -1620307778466 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620307790437 Marionette INFO Stopped listening on port 42079 -1620307797055 geckodriver INFO Listening on 127.0.0.1:37337 -1620307798059 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTgSEjj" -1620307801112 Marionette INFO Listening on port 41707 -1620307801138 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -JavaScript error: chrome://marionette/content/proxy.js, line 287: NS_ERROR_NOT_INITIALIZED -1620307808949 geckodriver INFO Listening on 127.0.0.1:49049 -1620307809944 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTKqN5w" -JavaScript error: undefined, line 0: Error: QuotaExceededError: storage.local API call exceeded its quota limitations. -1620307816308 Marionette INFO Listening on port 39781 -1620307816385 Marionette WARN TLS certificate errors will be ignored for this session -1620307817517 Marionette INFO Stopped listening on port 41707 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620307828817 Marionette INFO Stopped listening on port 39781 -console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" -JavaScript error: , line 0: uncaught exception: Object -JavaScript error: , line 0: uncaught exception: Object -JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. -JavaScript error: , line 0: uncaught exception: Object -JavaScript error: , line 0: uncaught exception: Object -JavaScript error: , line 0: uncaught exception: Object -JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -1620307829391 geckodriver INFO Listening on 127.0.0.1:43891 -1620307830394 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebGRjeW" -1620307833877 Marionette INFO Listening on port 44707 -1620307833907 Marionette WARN TLS certificate errors will be ignored for this session -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620307845889 Marionette INFO Stopped listening on port 44707 -console.error: "Could not write session state file " (new Error("", "(unknown module)")) "" -JavaScript error: , line 0: uncaught exception: Object -JavaScript error: , line 0: uncaught exception: Object -JavaScript error: , line 0: QuotaExceededError: The current transaction exceeded its quota limitations. -JavaScript error: , line 0: uncaught exception: Object -JavaScript error: , line 0: uncaught exception: Object -JavaScript error: , line 0: uncaught exception: Object -JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -JavaScript error: resource://gre/modules/AsyncShutdown.jsm, line 554: uncaught exception: Object -1620371224719 geckodriver INFO Listening on 127.0.0.1:39471 -1620371224725 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1fQlut" -1620371226991 Marionette INFO Listening on port 37729 -1620371227031 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 -1620371227479 Marionette INFO Stopped listening on port 37729 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1620371229088 geckodriver INFO Listening on 127.0.0.1:46731 -1620371229092 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilex9HUTV" -1620371231294 Marionette INFO Listening on port 39817 -1620371231299 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620371231950 Marionette INFO Stopped listening on port 39817 -1620375536691 geckodriver INFO Listening on 127.0.0.1:51979 -1620375536696 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileq77ZC0" -1620375539172 Marionette INFO Listening on port 44545 -1620375539205 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 -1620375539920 Marionette INFO Stopped listening on port 44545 -1620637142773 geckodriver INFO Listening on 127.0.0.1:49547 -1620637143764 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileX0L6Yt" -1620637148086 Marionette INFO Listening on port 45453 -1620637148137 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 -1620637152069 Marionette INFO Stopped listening on port 45453 -1620637159849 geckodriver INFO Listening on 127.0.0.1:43759 -1620637160852 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1gSUES" -1620637164011 Marionette INFO Listening on port 37959 -1620637164028 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 -1620637167829 Marionette INFO Stopped listening on port 37959 -1620637177587 geckodriver INFO Listening on 127.0.0.1:54291 -1620637178591 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVlk3jd" -1620637181996 Marionette INFO Listening on port 40849 -1620637182083 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620637190391 Marionette INFO Stopped listening on port 40849 -1620637197154 geckodriver INFO Listening on 127.0.0.1:36211 -1620637198159 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileHd4d85" -1620637201296 Marionette INFO Listening on port 37799 -1620637201371 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 -1620637206488 Marionette INFO Stopped listening on port 37799 -1620637212351 geckodriver INFO Listening on 127.0.0.1:32945 -1620637213355 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZKOy2Z" -1620637216501 Marionette INFO Listening on port 37451 -1620637216564 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 -1620637223789 Marionette INFO Stopped listening on port 37451 -1620637227656 geckodriver INFO Listening on 127.0.0.1:49191 -1620637228660 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebD2reV" -1620637231950 Marionette INFO Listening on port 44395 -1620637231963 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 -1620637242651 Marionette INFO Stopped listening on port 44395 -1620637246466 geckodriver INFO Listening on 127.0.0.1:42393 -1620637247470 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileh0ubxx" -1620637250837 Marionette INFO Listening on port 38629 -1620637250877 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 -1620637257532 Marionette INFO Stopped listening on port 38629 -1620637262354 geckodriver INFO Listening on 127.0.0.1:42773 -1620637263358 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7J0rMF" -1620637267855 Marionette INFO Listening on port 34425 -1620637267969 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 -1620637271177 Marionette INFO Stopped listening on port 34425 -1620637277060 geckodriver INFO Listening on 127.0.0.1:33969 -1620637278064 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileq5q6Y5" -1620637282329 Marionette INFO Listening on port 38325 -1620637282398 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620637295452 Marionette INFO Stopped listening on port 38325 -1620637467793 geckodriver INFO Listening on 127.0.0.1:44209 -1620637468800 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqTA2GA" -1620637472160 Marionette INFO Listening on port 44105 -1620637472210 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 -1620637475480 Marionette INFO Stopped listening on port 44105 -1620637485248 geckodriver INFO Listening on 127.0.0.1:49719 -1620637486251 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBE74rd" -1620637489503 Marionette INFO Listening on port 34559 -1620637489526 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 -1620637494122 Marionette INFO Stopped listening on port 34559 -1620637501889 geckodriver INFO Listening on 127.0.0.1:53153 -1620637502892 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileC7QbCs" -1620637506135 Marionette INFO Listening on port 37235 -1620637506194 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620637514724 Marionette INFO Stopped listening on port 37235 -1620637519477 geckodriver INFO Listening on 127.0.0.1:40019 -1620637520481 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGK4E4b" -1620637523584 Marionette INFO Listening on port 34567 -1620637523680 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 -1620637528132 Marionette INFO Stopped listening on port 34567 -1620637537802 geckodriver INFO Listening on 127.0.0.1:33575 -1620637538804 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNHeOS7" -1620637542043 Marionette INFO Listening on port 39653 -1620637542080 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 -1620637548982 Marionette INFO Stopped listening on port 39653 -1620637552872 geckodriver INFO Listening on 127.0.0.1:60171 -1620637553876 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileExhY02" -1620637557175 Marionette INFO Listening on port 40949 -1620637557197 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 -1620637567707 Marionette INFO Stopped listening on port 40949 -1620637573480 geckodriver INFO Listening on 127.0.0.1:46397 -1620637574483 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoRylcU" -1620637577535 Marionette INFO Listening on port 35739 -1620637577577 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 -1620637584314 Marionette INFO Stopped listening on port 35739 -1620637589248 geckodriver INFO Listening on 127.0.0.1:41937 -1620637590254 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezhROWq" -1620637593369 Marionette INFO Listening on port 42527 -1620637593417 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 -1620637595497 Marionette INFO Stopped listening on port 42527 -1620637599317 geckodriver INFO Listening on 127.0.0.1:47103 -1620637600322 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWP9fr0" -1620637603631 Marionette INFO Listening on port 43063 -1620637603717 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620637613331 Marionette INFO Stopped listening on port 43063 -1620637622178 geckodriver INFO Listening on 127.0.0.1:49271 -1620637623181 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecB36db" -1620637626496 Marionette INFO Listening on port 45925 -1620637626582 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 -1620637630034 Marionette INFO Stopped listening on port 45925 -1620637635741 geckodriver INFO Listening on 127.0.0.1:50319 -1620637636745 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilep3o6mG" -1620637639946 Marionette INFO Listening on port 40383 -1620637640032 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 -1620637643698 Marionette INFO Stopped listening on port 40383 -1620637649650 geckodriver INFO Listening on 127.0.0.1:36205 -1620637650655 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYQIKlo" -1620637653803 Marionette INFO Listening on port 34459 -1620637653841 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620637662088 Marionette INFO Stopped listening on port 34459 -1620637665851 geckodriver INFO Listening on 127.0.0.1:58715 -1620637666855 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5acYg4" -1620637670150 Marionette INFO Listening on port 34265 -1620637670227 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 -1620637674736 Marionette INFO Stopped listening on port 34265 -1620637681485 geckodriver INFO Listening on 127.0.0.1:46937 -1620637682489 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemqA9lu" -1620637685702 Marionette INFO Listening on port 33359 -1620637685788 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 -1620637693025 Marionette INFO Stopped listening on port 33359 -1620637701817 geckodriver INFO Listening on 127.0.0.1:56681 -1620637702821 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGknN95" -1620637706093 Marionette INFO Listening on port 35383 -1620637706109 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 -1620637716130 Marionette INFO Stopped listening on port 35383 -1620637726003 geckodriver INFO Listening on 127.0.0.1:54379 -1620637727007 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXEglCU" -1620637730236 Marionette INFO Listening on port 42045 -1620637730301 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 -1620637737131 Marionette INFO Stopped listening on port 42045 -1620637740115 geckodriver INFO Listening on 127.0.0.1:55723 -1620637741118 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3YbGv5" -1620637745443 Marionette INFO Listening on port 41489 -1620637745540 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 -1620637748181 Marionette INFO Stopped listening on port 41489 -1620637758096 geckodriver INFO Listening on 127.0.0.1:35571 -1620637759098 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevZhR7X" -1620637764028 Marionette INFO Listening on port 43853 -1620637764195 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620637778664 Marionette INFO Stopped listening on port 43853 -1620637941937 geckodriver INFO Listening on 127.0.0.1:58447 -1620637942941 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepMsKym" -1620637946395 Marionette INFO Listening on port 39917 -1620637946459 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 -1620637950390 Marionette INFO Stopped listening on port 39917 -1620637960144 geckodriver INFO Listening on 127.0.0.1:36445 -1620637961149 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVnirjd" -1620637965170 Marionette INFO Listening on port 45429 -1620637965271 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 -1620637969458 Marionette INFO Stopped listening on port 45429 -1620637977189 geckodriver INFO Listening on 127.0.0.1:37591 -1620637978193 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelUVpIm" -1620637981341 Marionette INFO Listening on port 44203 -1620637981359 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620637990590 Marionette INFO Stopped listening on port 44203 -1620637995340 geckodriver INFO Listening on 127.0.0.1:57607 -1620637996343 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileehCwVV" -1620637999467 Marionette INFO Listening on port 45923 -1620637999549 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 -1620638004023 Marionette INFO Stopped listening on port 45923 -1620638007838 geckodriver INFO Listening on 127.0.0.1:44111 -1620638008843 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDkE48J" -1620638012045 Marionette INFO Listening on port 39951 -1620638012121 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 -1620638019454 Marionette INFO Stopped listening on port 39951 -1620638023306 geckodriver INFO Listening on 127.0.0.1:43209 -1620638024313 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRFojUh" -1620638027567 Marionette INFO Listening on port 38197 -1620638027616 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 -1620638033436 Marionette INFO Stopped listening on port 38197 -1620638043392 geckodriver INFO Listening on 127.0.0.1:60523 -1620638044396 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIJug7I" -1620638048703 Marionette INFO Listening on port 34531 -1620638048712 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 -1620638056850 Marionette INFO Stopped listening on port 34531 -1620638061631 geckodriver INFO Listening on 127.0.0.1:35611 -1620638062635 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileajbirN" -1620638066303 Marionette INFO Listening on port 41791 -1620638066311 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 -1620638068330 Marionette INFO Stopped listening on port 41791 -1620638074258 geckodriver INFO Listening on 127.0.0.1:48843 -1620638075261 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejpTFXc" -1620638078926 Marionette INFO Listening on port 40287 -1620638078940 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620638087934 Marionette INFO Stopped listening on port 40287 -1620649116478 geckodriver INFO Listening on 127.0.0.1:38177 -1620649117481 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileuRVnTj" -1620649120982 Marionette INFO Listening on port 39537 -1620649121077 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 -1620649124447 Marionette INFO Stopped listening on port 39537 -1620649126187 geckodriver INFO Listening on 127.0.0.1:53283 -1620649127191 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewLc7uE" -1620649130516 Marionette INFO Listening on port 36867 -1620649130582 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 -1620649134503 Marionette INFO Stopped listening on port 36867 -1620649146318 geckodriver INFO Listening on 127.0.0.1:55329 -1620649147321 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehdsHmo" -1620649150852 Marionette INFO Listening on port 36539 -1620649150901 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620649159416 Marionette INFO Stopped listening on port 36539 -1620649172215 geckodriver INFO Listening on 127.0.0.1:57603 -1620649173219 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileedHIyr" -1620649176761 Marionette INFO Listening on port 38917 -1620649176828 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 -1620649181539 Marionette INFO Stopped listening on port 38917 -1620649187404 geckodriver INFO Listening on 127.0.0.1:43737 -1620649188403 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQLHN7Z" -1620649191796 Marionette INFO Listening on port 36797 -1620649191882 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 -1620649199388 Marionette INFO Stopped listening on port 36797 -1620649210433 geckodriver INFO Listening on 127.0.0.1:41063 -1620649211437 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemnFx8h" -1620649215414 Marionette INFO Listening on port 39085 -1620649215462 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 -1620649223397 Marionette INFO Stopped listening on port 39085 -1620649229141 geckodriver INFO Listening on 127.0.0.1:37291 -1620649230145 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilee0tq7f" -1620649233740 Marionette INFO Listening on port 35431 -1620649233816 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 -1620649240795 Marionette INFO Stopped listening on port 35431 -1620649250808 geckodriver INFO Listening on 127.0.0.1:51919 -1620649251813 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile75iEG3" -1620649256195 Marionette INFO Listening on port 43047 -1620649256224 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 -1620649260201 Marionette INFO Stopped listening on port 43047 -1620649263270 geckodriver INFO Listening on 127.0.0.1:54253 -1620649264274 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileHyCa84" -1620649267638 Marionette INFO Listening on port 40445 -1620649267653 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620649277276 Marionette INFO Stopped listening on port 40445 -1620716785157 geckodriver INFO Listening on 127.0.0.1:60519 -1620716786149 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOwF9fi" -1620716790646 Marionette INFO Listening on port 38401 -1620716790692 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 -1620716794162 Marionette INFO Stopped listening on port 38401 -1620716800035 geckodriver INFO Listening on 127.0.0.1:56701 -1620716801038 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSFDLCL" -1620716804220 Marionette INFO Listening on port 34373 -1620716804237 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 -1620716808002 Marionette INFO Stopped listening on port 34373 -1620716811904 geckodriver INFO Listening on 127.0.0.1:54173 -1620716812908 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSqJtQ8" -1620716816288 Marionette INFO Listening on port 35869 -1620716816302 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620716824327 Marionette INFO Stopped listening on port 35869 -1620716826157 geckodriver INFO Listening on 127.0.0.1:53203 -1620716827160 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqq8hrg" -1620716830405 Marionette INFO Listening on port 36827 -1620716830442 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 -1620716834561 Marionette INFO Stopped listening on port 36827 -1620716839286 geckodriver INFO Listening on 127.0.0.1:41509 -1620716840290 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenTGZqK" -1620716843541 Marionette INFO Listening on port 39507 -1620716843575 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 -1620716851891 Marionette INFO Stopped listening on port 39507 -1620716855778 geckodriver INFO Listening on 127.0.0.1:34453 -1620716856781 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5EzCCq" -1620716860250 Marionette INFO Listening on port 43791 -1620716860309 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 -1620716865714 Marionette INFO Stopped listening on port 43791 -1620716870661 geckodriver INFO Listening on 127.0.0.1:60555 -1620716871656 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile10XV02" -1620716874873 Marionette INFO Listening on port 45695 -1620716874942 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 -1620716881821 Marionette INFO Stopped listening on port 45695 -1620716886700 geckodriver INFO Listening on 127.0.0.1:53575 -1620716887705 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileae52xe" -1620716890987 Marionette INFO Listening on port 42097 -1620716891004 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620716893096 Marionette INFO Stopped listening on port 42097 -1620716901018 geckodriver INFO Listening on 127.0.0.1:46917 -1620716902023 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejxDbfY" -1620716905270 Marionette INFO Listening on port 33803 -1620716905305 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620716914457 Marionette INFO Stopped listening on port 33803 -1620717123305 geckodriver INFO Listening on 127.0.0.1:42207 -1620717124309 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezKV0CL" -1620717127662 Marionette INFO Listening on port 41135 -1620717127708 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 -1620717130781 Marionette INFO Stopped listening on port 41135 -1620717135535 geckodriver INFO Listening on 127.0.0.1:47461 -1620717136534 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZuDEAK" -1620717139851 Marionette INFO Listening on port 33625 -1620717139931 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 -1620717143541 Marionette INFO Stopped listening on port 33625 -1620717148282 geckodriver INFO Listening on 127.0.0.1:39527 -1620717149285 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWaP661" -1620717152629 Marionette INFO Listening on port 40007 -1620717152678 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717160763 Marionette INFO Stopped listening on port 40007 -1620717167647 geckodriver INFO Listening on 127.0.0.1:38925 -1620717168651 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiQaQPK" -1620717171920 Marionette INFO Listening on port 40979 -1620717171978 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 -1620717176430 Marionette INFO Stopped listening on port 40979 -1620717182443 geckodriver INFO Listening on 127.0.0.1:46961 -1620717183452 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileEv6xvU" -1620717187090 Marionette INFO Listening on port 41163 -1620717187142 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 -1620717193491 Marionette INFO Stopped listening on port 41163 -1620717203458 geckodriver INFO Listening on 127.0.0.1:58007 -1620717204462 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilei3tNJp" -1620717208203 Marionette INFO Listening on port 33675 -1620717208230 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 -1620717215409 Marionette INFO Stopped listening on port 33675 -1620717222270 geckodriver INFO Listening on 127.0.0.1:37447 -1620717223266 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3HMNtD" -1620717227612 Marionette INFO Listening on port 36695 -1620717227635 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 -1620717234078 Marionette INFO Stopped listening on port 36695 -1620717241968 geckodriver INFO Listening on 127.0.0.1:36231 -1620717242972 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekyXCla" -1620717246340 Marionette INFO Listening on port 35195 -1620717246360 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717248739 Marionette INFO Stopped listening on port 35195 -1620717252606 geckodriver INFO Listening on 127.0.0.1:40219 -1620717253610 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqnPJvD" -1620717256997 Marionette INFO Listening on port 36069 -1620717257055 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717266022 Marionette INFO Stopped listening on port 36069 -1620717376207 geckodriver INFO Listening on 127.0.0.1:39591 -1620717377210 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileajxYXn" -1620717380551 Marionette INFO Listening on port 46445 -1620717380595 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 -1620717383759 Marionette INFO Stopped listening on port 46445 -1620717393501 geckodriver INFO Listening on 127.0.0.1:36699 -1620717394507 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXeZF1t" -1620717397980 Marionette INFO Listening on port 38283 -1620717398009 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 -1620717401559 Marionette INFO Stopped listening on port 38283 -1620717406287 geckodriver INFO Listening on 127.0.0.1:49673 -1620717407291 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile71lYLt" -1620717410526 Marionette INFO Listening on port 46193 -1620717410592 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717418424 Marionette INFO Stopped listening on port 46193 -1620717427180 geckodriver INFO Listening on 127.0.0.1:33313 -1620717428184 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUxH3hG" -1620717431483 Marionette INFO Listening on port 45167 -1620717431581 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 -1620717435660 Marionette INFO Stopped listening on port 45167 -1620717448429 geckodriver INFO Listening on 127.0.0.1:34791 -1620717449433 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejaNTaa" -1620717452809 Marionette INFO Listening on port 35819 -1620717452908 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 -1620717459279 Marionette INFO Stopped listening on port 35819 -1620717467152 geckodriver INFO Listening on 127.0.0.1:39089 -1620717468155 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4FcHsR" -1620717471433 Marionette INFO Listening on port 41995 -1620717471525 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 -1620717477226 Marionette INFO Stopped listening on port 41995 -1620717483442 geckodriver INFO Listening on 127.0.0.1:33903 -1620717484446 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOdhzA1" -1620717487750 Marionette INFO Listening on port 45683 -1620717487840 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 -1620717494143 Marionette INFO Stopped listening on port 45683 -1620717498140 geckodriver INFO Listening on 127.0.0.1:60883 -1620717499143 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJETCBZ" -1620717502456 Marionette INFO Listening on port 41415 -1620717502529 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717505516 Marionette INFO Stopped listening on port 41415 -1620717514298 geckodriver INFO Listening on 127.0.0.1:46767 -1620717515302 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBJC9us" -1620717518617 Marionette INFO Listening on port 37535 -1620717518700 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717527987 Marionette INFO Stopped listening on port 37535 -1620717627973 geckodriver INFO Listening on 127.0.0.1:40167 -1620717628977 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemHobbC" -1620717632247 Marionette INFO Listening on port 33621 -1620717632281 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 -1620717635394 Marionette INFO Stopped listening on port 33621 -1620717644145 geckodriver INFO Listening on 127.0.0.1:57419 -1620717645149 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesbS3As" -1620717648539 Marionette INFO Listening on port 46643 -1620717648561 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 -1620717652341 Marionette INFO Stopped listening on port 46643 -1620717657159 geckodriver INFO Listening on 127.0.0.1:42789 -1620717658163 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePf8fNa" -1620717661421 Marionette INFO Listening on port 33913 -1620717661445 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717669635 Marionette INFO Stopped listening on port 33913 -1620717675400 geckodriver INFO Listening on 127.0.0.1:58379 -1620717676403 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezbL3gZ" -1620717679604 Marionette INFO Listening on port 40481 -1620717679700 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 -1620717684000 Marionette INFO Stopped listening on port 40481 -1620717693788 geckodriver INFO Listening on 127.0.0.1:39261 -1620717694793 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2jNAgO" -1620717698153 Marionette INFO Listening on port 43999 -1620717698195 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 -1620717704661 Marionette INFO Stopped listening on port 43999 -1620717708551 geckodriver INFO Listening on 127.0.0.1:50339 -1620717709555 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledTnoGD" -1620717713063 Marionette INFO Listening on port 41121 -1620717713156 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 -1620717718366 Marionette INFO Stopped listening on port 41121 -1620717724310 geckodriver INFO Listening on 127.0.0.1:60381 -1620717725314 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileF8QJPA" -1620717728584 Marionette INFO Listening on port 37867 -1620717728648 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 -1620717735042 Marionette INFO Stopped listening on port 37867 -1620717739972 geckodriver INFO Listening on 127.0.0.1:60623 -1620717740975 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqcPtki" -1620717744259 Marionette INFO Listening on port 45051 -1620717744359 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717760235 Marionette INFO Stopped listening on port 45051 -1620717766086 geckodriver INFO Listening on 127.0.0.1:51393 -1620717767090 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileravkHJ" -1620717770397 Marionette INFO Listening on port 35053 -1620717770467 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717779424 Marionette INFO Stopped listening on port 35053 -1620717843890 geckodriver INFO Listening on 127.0.0.1:43785 -1620717844894 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecXTdbd" -1620717848136 Marionette INFO Listening on port 41767 -1620717848187 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 -1620717851182 Marionette INFO Stopped listening on port 41767 -1620717859920 geckodriver INFO Listening on 127.0.0.1:56143 -1620717860923 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDSqy5V" -1620717864329 Marionette INFO Listening on port 37637 -1620717864361 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 -1620717867981 Marionette INFO Stopped listening on port 37637 -1620717873822 geckodriver INFO Listening on 127.0.0.1:50573 -1620717874826 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWXpcw5" -1620717878072 Marionette INFO Listening on port 34671 -1620717878127 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717886016 Marionette INFO Stopped listening on port 34671 -1620717895779 geckodriver INFO Listening on 127.0.0.1:46119 -1620717896783 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilez3Du9s" -1620717900169 Marionette INFO Listening on port 46587 -1620717900183 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 -1620717904403 Marionette INFO Stopped listening on port 46587 -1620717914163 geckodriver INFO Listening on 127.0.0.1:32945 -1620717915168 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYOS963" -1620717918532 Marionette INFO Listening on port 45645 -1620717918589 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 -1620717925001 Marionette INFO Stopped listening on port 45645 -1620717929913 geckodriver INFO Listening on 127.0.0.1:35283 -1620717930917 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1ALveq" -1620717934214 Marionette INFO Listening on port 36417 -1620717934315 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 -1620717939781 Marionette INFO Stopped listening on port 36417 -1620717949603 geckodriver INFO Listening on 127.0.0.1:48701 -1620717950607 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecyyS5r" -1620717953952 Marionette INFO Listening on port 43563 -1620717954017 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 -1620717960357 Marionette INFO Stopped listening on port 43563 -1620717964281 geckodriver INFO Listening on 127.0.0.1:47153 -1620717965284 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGT6YsR" -1620717968729 Marionette INFO Listening on port 33803 -1620717968759 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717977048 Marionette INFO Stopped listening on port 33803 -1620717978093 geckodriver INFO Listening on 127.0.0.1:50079 -1620717979097 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3r1QO0" -1620717982371 Marionette INFO Listening on port 45201 -1620717982402 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620717991605 Marionette INFO Stopped listening on port 45201 -1620803439968 geckodriver INFO Listening on 127.0.0.1:45289 -1620803439974 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYlFs8k" -1620803442298 Marionette INFO Listening on port 37417 -1620803442382 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 -1620803444001 Marionette INFO Stopped listening on port 37417 -1620803444619 geckodriver INFO Listening on 127.0.0.1:38799 -1620803444623 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileHcWNka" -1620803446886 Marionette INFO Listening on port 44631 -1620803446949 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 -1620803447523 Marionette INFO Stopped listening on port 44631 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1620803448210 geckodriver INFO Listening on 127.0.0.1:43783 -1620803448218 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCp66Kt" -1620803450498 Marionette INFO Listening on port 42107 -1620803450526 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620803451338 Marionette INFO Stopped listening on port 42107 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -Exiting due to channel error. -1620803521061 geckodriver INFO Listening on 127.0.0.1:44379 -1620803521066 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2p15s7" -1620803523310 Marionette INFO Listening on port 36733 -1620803523374 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 -1620803525026 Marionette INFO Stopped listening on port 36733 -1620803528526 geckodriver INFO Listening on 127.0.0.1:50605 -1620803528529 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileO83IFs" -1620803530848 Marionette INFO Listening on port 41761 -1620803530936 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 -1620803531583 Marionette INFO Stopped listening on port 41761 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1620803532263 geckodriver INFO Listening on 127.0.0.1:54161 -1620803532269 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8M5AVW" -1620803534585 Marionette INFO Listening on port 37401 -1620803534678 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620803535499 Marionette INFO Stopped listening on port 37401 -1620803537200 geckodriver INFO Listening on 127.0.0.1:59245 -1620803537205 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5N2aJD" -1620803539834 Marionette INFO Listening on port 46613 -1620803539916 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620803541190 Marionette INFO Stopped listening on port 46613 -1620803542790 geckodriver INFO Listening on 127.0.0.1:39369 -1620803542793 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefOeYHf" -1620803544933 Marionette INFO Listening on port 42349 -1620803545002 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 -1620803545718 Marionette INFO Stopped listening on port 42349 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1620803547291 geckodriver INFO Listening on 127.0.0.1:55633 -1620803547296 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqjfTAF" -1620803549580 Marionette INFO Listening on port 44855 -1620803549612 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 -1620803550288 Marionette INFO Stopped listening on port 44855 -1620803552878 geckodriver INFO Listening on 127.0.0.1:33193 -1620803552882 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevEjnG2" -1620803555214 Marionette INFO Listening on port 45151 -1620803555291 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 -1620803555968 Marionette INFO Stopped listening on port 45151 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1620803558553 geckodriver INFO Listening on 127.0.0.1:50371 -1620803558560 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAFEjJZ" -1620803560863 Marionette INFO Listening on port 36875 -1620803560869 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 -1620803561585 Marionette INFO Stopped listening on port 36875 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1620803563062 geckodriver INFO Listening on 127.0.0.1:52291 -1620803563066 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemKxOJ9" -1620803565349 Marionette INFO Listening on port 44853 -1620803565375 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620803566578 Marionette INFO Stopped listening on port 44853 -1620803569055 geckodriver INFO Listening on 127.0.0.1:56827 -1620803569060 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1N3SZS" -1620803571386 Marionette INFO Listening on port 35863 -1620803571472 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620803572308 Marionette INFO Stopped listening on port 35863 -1620803604297 geckodriver INFO Listening on 127.0.0.1:52651 -1620803604302 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileO6Dh6B" -1620803606648 Marionette INFO Listening on port 39853 -1620803606710 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 -1620803608433 Marionette INFO Stopped listening on port 39853 -1620803610932 geckodriver INFO Listening on 127.0.0.1:60191 -1620803610936 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilernkoSX" -1620803613233 Marionette INFO Listening on port 39823 -1620803613244 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 -1620803615362 Marionette INFO Stopped listening on port 39823 -1620803616969 geckodriver INFO Listening on 127.0.0.1:45085 -1620803616972 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8npOh0" -1620803619232 Marionette INFO Listening on port 37421 -1620803619299 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620803624729 Marionette INFO Stopped listening on port 37421 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620803625339 geckodriver INFO Listening on 127.0.0.1:51003 -1620803625343 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebGCQLK" -1620803627508 Marionette INFO Listening on port 36463 -1620803627551 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620803633325 Marionette INFO Stopped listening on port 36463 -1620803634943 geckodriver INFO Listening on 127.0.0.1:36937 -1620803634946 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUXqTBk" -1620803637157 Marionette INFO Listening on port 40577 -1620803637253 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 -1620803639835 Marionette INFO Stopped listening on port 40577 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620803640542 geckodriver INFO Listening on 127.0.0.1:47335 -1620803640546 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaNjksP" -1620803642698 Marionette INFO Listening on port 46515 -1620803642754 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 -1620803652517 Marionette INFO Stopped listening on port 46515 -1620803655134 geckodriver INFO Listening on 127.0.0.1:49445 -1620803655137 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekOYyKn" -1620803657402 Marionette INFO Listening on port 39585 -1620803657444 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 -1620803660740 Marionette INFO Stopped listening on port 39585 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - -1620803663371 geckodriver INFO Listening on 127.0.0.1:35583 -1620803663375 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXOqAeN" -1620803665631 Marionette INFO Listening on port 34939 -1620803665703 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 -1620803670422 Marionette INFO Stopped listening on port 34939 -1620803673044 geckodriver INFO Listening on 127.0.0.1:58969 -1620803673047 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileI0glLT" -1620803675265 Marionette INFO Listening on port 41871 -1620803675362 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620803678640 Marionette INFO Stopped listening on port 41871 -1620803681224 geckodriver INFO Listening on 127.0.0.1:53907 -1620803681227 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehU2NH0" -1620803683530 Marionette INFO Listening on port 35861 -1620803683537 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620803690146 Marionette INFO Stopped listening on port 35861 -1620809518685 geckodriver INFO Listening on 127.0.0.1:56533 -1620809518690 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilex3n5Lj" -1620809521064 Marionette INFO Listening on port 41223 -1620809521099 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 -1620809522939 Marionette INFO Stopped listening on port 41223 -1620809525545 geckodriver INFO Listening on 127.0.0.1:48665 -1620809525548 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFY32H9" -1620809527703 Marionette INFO Listening on port 33691 -1620809527754 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 -1620809529870 Marionette INFO Stopped listening on port 33691 -1620809531464 geckodriver INFO Listening on 127.0.0.1:35071 -1620809531467 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerRTmdB" -1620809533728 Marionette INFO Listening on port 41023 -1620809533774 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620809539256 Marionette INFO Stopped listening on port 41023 -1620809539854 geckodriver INFO Listening on 127.0.0.1:40663 -1620809539857 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilel9VGJb" -1620809542126 Marionette INFO Listening on port 38599 -1620809542164 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620809547995 Marionette INFO Stopped listening on port 38599 -1620809548606 geckodriver INFO Listening on 127.0.0.1:35053 -1620809548610 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileY4C6xV" -1620809550803 Marionette INFO Listening on port 41977 -1620809550818 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 -1620809553599 Marionette INFO Stopped listening on port 41977 -1620809557202 geckodriver INFO Listening on 127.0.0.1:53797 -1620809557206 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekmoPv5" -1620809559596 Marionette INFO Listening on port 38253 -1620809559615 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 -1620809579454 Marionette INFO Stopped listening on port 38253 -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -1620817560257 geckodriver INFO Listening on 127.0.0.1:56175 -1620817560262 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilew16AwF" -1620817562556 Marionette INFO Listening on port 36875 -1620817562569 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 -1620817564398 Marionette INFO Stopped listening on port 36875 -1620817566015 geckodriver INFO Listening on 127.0.0.1:60775 -1620817566018 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletWND6S" -1620817568229 Marionette INFO Listening on port 37455 -1620817568327 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 -1620817570452 Marionette INFO Stopped listening on port 37455 -1620817573062 geckodriver INFO Listening on 127.0.0.1:45649 -1620817573066 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLzhrwZ" -1620817575252 Marionette INFO Listening on port 44197 -1620817575273 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620817580692 Marionette INFO Stopped listening on port 44197 -1620817582206 geckodriver INFO Listening on 127.0.0.1:58669 -1620817582211 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesVIvIy" -1620817584336 Marionette INFO Listening on port 38761 -1620817584419 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620817590253 Marionette INFO Stopped listening on port 38761 -1620817592854 geckodriver INFO Listening on 127.0.0.1:35631 -1620817592858 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9keqHe" -1620817595113 Marionette INFO Listening on port 40491 -1620817595164 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 -1620817597722 Marionette INFO Stopped listening on port 40491 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620817600340 geckodriver INFO Listening on 127.0.0.1:60341 -1620817600344 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4T6vR2" -1620817602496 Marionette INFO Listening on port 35159 -1620817602553 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 -1620817605170 Marionette INFO Stopped listening on port 35159 -1620817607792 geckodriver INFO Listening on 127.0.0.1:60523 -1620817607796 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewr9pKB" -1620817610017 Marionette INFO Listening on port 35599 -1620817610104 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 -1620817613387 Marionette INFO Stopped listening on port 35599 -1620817615888 geckodriver INFO Listening on 127.0.0.1:41253 -1620817615892 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile37dciY" -1620817617995 Marionette INFO Listening on port 42639 -1620817618005 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 -1620817622610 Marionette INFO Stopped listening on port 42639 -1620817625219 geckodriver INFO Listening on 127.0.0.1:34791 -1620817625223 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile05pnCv" -1620817627399 Marionette INFO Listening on port 32919 -1620817627429 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620817633646 Marionette INFO Stopped listening on port 32919 -1620817636248 geckodriver INFO Listening on 127.0.0.1:58375 -1620817636252 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileO7Z7S8" -1620817638446 Marionette INFO Listening on port 42769 -1620817638459 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620817645091 Marionette INFO Stopped listening on port 42769 -1620818990047 geckodriver INFO Listening on 127.0.0.1:56581 -1620818990053 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0FknWG" -1620818992294 Marionette INFO Listening on port 46135 -1620818992360 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 -1620818994120 Marionette INFO Stopped listening on port 46135 -1620818996632 geckodriver INFO Listening on 127.0.0.1:36005 -1620818996635 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepYPOj2" -1620818998895 Marionette INFO Listening on port 45165 -1620818998942 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 -1620819001109 Marionette INFO Stopped listening on port 45165 -1620819002750 geckodriver INFO Listening on 127.0.0.1:42065 -1620819002754 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemPvP7x" -1620819004905 Marionette INFO Listening on port 34347 -1620819004961 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819010628 Marionette INFO Stopped listening on port 34347 -1620819013248 geckodriver INFO Listening on 127.0.0.1:56409 -1620819013252 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileF6Cx1M" -1620819015394 Marionette INFO Listening on port 42915 -1620819015464 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819021201 Marionette INFO Stopped listening on port 42915 -1620819022816 geckodriver INFO Listening on 127.0.0.1:38405 -1620819022820 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4MXi5b" -1620819025065 Marionette INFO Listening on port 46219 -1620819025128 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 -1620819027693 Marionette INFO Stopped listening on port 46219 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620819029310 geckodriver INFO Listening on 127.0.0.1:59183 -1620819029313 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaGDPl7" -1620819031543 Marionette INFO Listening on port 36649 -1620819031621 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 -1620819034161 Marionette INFO Stopped listening on port 36649 -1620819034924 geckodriver INFO Listening on 127.0.0.1:49379 -1620819034928 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSJaqK1" -1620819037159 Marionette INFO Listening on port 39223 -1620819037237 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 -1620819040167 Marionette INFO Stopped listening on port 39223 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - -1620819042788 geckodriver INFO Listening on 127.0.0.1:40721 -1620819042791 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKpjh2p" -1620819044985 Marionette INFO Listening on port 39517 -1620819044998 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 -1620819049516 Marionette INFO Stopped listening on port 39517 -1620819052148 geckodriver INFO Listening on 127.0.0.1:43217 -1620819052153 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileV3TNUk" -1620819054316 Marionette INFO Listening on port 43595 -1620819054361 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819060495 Marionette INFO Stopped listening on port 43595 -1620819063999 geckodriver INFO Listening on 127.0.0.1:40169 -1620819064004 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLJLLHF" -1620819066293 Marionette INFO Listening on port 36795 -1620819066313 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819073056 Marionette INFO Stopped listening on port 36795 -1620819310148 geckodriver INFO Listening on 127.0.0.1:48659 -1620819310153 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOvjYEZ" -1620819312615 Marionette INFO Listening on port 43723 -1620819312660 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 -1620819314458 Marionette INFO Stopped listening on port 43723 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - -1620819316037 geckodriver INFO Listening on 127.0.0.1:52193 -1620819316041 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8kE9tv" -1620819318163 Marionette INFO Listening on port 46753 -1620819318254 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 -1620819320392 Marionette INFO Stopped listening on port 46753 -1620819321997 geckodriver INFO Listening on 127.0.0.1:56003 -1620819322004 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVhIzzi" -1620819324205 Marionette INFO Listening on port 43401 -1620819324214 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819329678 Marionette INFO Stopped listening on port 43401 -1620819332250 geckodriver INFO Listening on 127.0.0.1:36485 -1620819332254 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOK9d7U" -1620819334491 Marionette INFO Listening on port 46209 -1620819334563 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819340594 Marionette INFO Stopped listening on port 46209 -1620819343211 geckodriver INFO Listening on 127.0.0.1:39053 -1620819343216 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemMixCJ" -1620819345409 Marionette INFO Listening on port 34811 -1620819345424 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 -1620819348025 Marionette INFO Stopped listening on port 34811 -1620819349642 geckodriver INFO Listening on 127.0.0.1:52077 -1620819349646 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilen3WjHL" -1620819351734 Marionette INFO Listening on port 38885 -1620819351759 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 -1620819354408 Marionette INFO Stopped listening on port 38885 -1620819357001 geckodriver INFO Listening on 127.0.0.1:40929 -1620819357004 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile90GPa7" -1620819359584 Marionette INFO Listening on port 41171 -1620819359613 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 -1620819362951 Marionette INFO Stopped listening on port 41171 -1620819365535 geckodriver INFO Listening on 127.0.0.1:42285 -1620819365539 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesv1Gt3" -1620819367876 Marionette INFO Listening on port 41127 -1620819367948 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 -1620819372577 Marionette INFO Stopped listening on port 41127 -1620819373344 geckodriver INFO Listening on 127.0.0.1:38409 -1620819373348 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileo2JBwA" -1620819375695 Marionette INFO Listening on port 36945 -1620819375756 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819381796 Marionette INFO Stopped listening on port 36945 -1620819383429 geckodriver INFO Listening on 127.0.0.1:55637 -1620819383433 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilek99SHc" -1620819385754 Marionette INFO Listening on port 39935 -1620819385841 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819392398 Marionette INFO Stopped listening on port 39935 -1620819452827 geckodriver INFO Listening on 127.0.0.1:56455 -1620819452832 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileh0wHh0" -1620819455050 Marionette INFO Listening on port 38911 -1620819455140 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 -1620819456898 Marionette INFO Stopped listening on port 38911 -1620819458521 geckodriver INFO Listening on 127.0.0.1:54117 -1620819458525 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledBjmQB" -1620819460696 Marionette INFO Listening on port 46777 -1620819460733 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 -1620819462872 Marionette INFO Stopped listening on port 46777 -1620819465375 geckodriver INFO Listening on 127.0.0.1:43605 -1620819465378 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6zJWAy" -1620819467687 Marionette INFO Listening on port 39317 -1620819467786 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819473296 Marionette INFO Stopped listening on port 39317 -1620819475918 geckodriver INFO Listening on 127.0.0.1:56115 -1620819475923 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9R9h6d" -1620819478259 Marionette INFO Listening on port 43097 -1620819478332 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819484232 Marionette INFO Stopped listening on port 43097 -1620819485852 geckodriver INFO Listening on 127.0.0.1:43427 -1620819485855 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDNqPlc" -1620819488153 Marionette INFO Listening on port 40547 -1620819488167 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 -1620819490808 Marionette INFO Stopped listening on port 40547 -1620819491617 geckodriver INFO Listening on 127.0.0.1:56841 -1620819491620 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezD3fxg" -1620819493779 Marionette INFO Listening on port 41355 -1620819493831 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 -1620819503686 Marionette INFO Stopped listening on port 41355 -1620819505207 geckodriver INFO Listening on 127.0.0.1:50339 -1620819505210 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileddGMwU" -1620819507465 Marionette INFO Listening on port 44185 -1620819507521 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 -1620819511016 Marionette INFO Stopped listening on port 44185 -1620819512628 geckodriver INFO Listening on 127.0.0.1:55991 -1620819512633 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIJMZrg" -1620819514996 Marionette INFO Listening on port 39735 -1620819515041 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 -1620819519799 Marionette INFO Stopped listening on port 39735 -1620819520516 geckodriver INFO Listening on 127.0.0.1:45877 -1620819520519 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCQQyFq" -1620819522788 Marionette INFO Listening on port 32919 -1620819522827 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819529342 Marionette INFO Stopped listening on port 32919 -1620819530066 geckodriver INFO Listening on 127.0.0.1:46741 -1620819530070 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileK3munb" -1620819532599 Marionette INFO Listening on port 37103 -1620819532679 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819539300 Marionette INFO Stopped listening on port 37103 -1620819631020 geckodriver INFO Listening on 127.0.0.1:36827 -1620819631024 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDYLzW4" -1620819633298 Marionette INFO Listening on port 40215 -1620819633330 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 -1620819635138 Marionette INFO Stopped listening on port 40215 -1620819637748 geckodriver INFO Listening on 127.0.0.1:60983 -1620819637753 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerNQkBQ" -1620819639957 Marionette INFO Listening on port 44871 -1620819640060 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 -1620819642241 Marionette INFO Stopped listening on port 44871 - -###!!! [Parent][RunMessage] Error: Channel error: cannot send/recv - -1620819644749 geckodriver INFO Listening on 127.0.0.1:40323 -1620819644753 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2yNswo" -1620819646882 Marionette INFO Listening on port 36533 -1620819646960 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819652589 Marionette INFO Stopped listening on port 36533 -1620819653192 geckodriver INFO Listening on 127.0.0.1:41347 -1620819653195 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8O6xwh" -1620819655353 Marionette INFO Listening on port 35883 -1620819655402 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819661480 Marionette INFO Stopped listening on port 35883 -1620819664096 geckodriver INFO Listening on 127.0.0.1:51057 -1620819664100 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileizGK24" -1620819666325 Marionette INFO Listening on port 33715 -1620819666407 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 -1620819669216 Marionette INFO Stopped listening on port 33715 -1620819670818 geckodriver INFO Listening on 127.0.0.1:54051 -1620819670822 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileuTzIxq" -1620819673007 Marionette INFO Listening on port 43193 -1620819673028 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 -1620819682935 Marionette INFO Stopped listening on port 43193 -1620819684557 geckodriver INFO Listening on 127.0.0.1:53593 -1620819684561 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepmDdck" -1620819686801 Marionette INFO Listening on port 37245 -1620819686868 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 -1620819690455 Marionette INFO Stopped listening on port 37245 -1620819692079 geckodriver INFO Listening on 127.0.0.1:35621 -1620819692083 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6Nko5u" -1620819694316 Marionette INFO Listening on port 44083 -1620819694392 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 -1620819699275 Marionette INFO Stopped listening on port 44083 -1620819701907 geckodriver INFO Listening on 127.0.0.1:59849 -1620819701910 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilez8Xjuw" -1620819704162 Marionette INFO Listening on port 38947 -1620819704218 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819710582 Marionette INFO Stopped listening on port 38947 -1620819713196 geckodriver INFO Listening on 127.0.0.1:41479 -1620819713200 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileG9mHWz" -1620819715307 Marionette INFO Listening on port 39709 -1620819715408 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819722131 Marionette INFO Stopped listening on port 39709 -1620819925097 geckodriver INFO Listening on 127.0.0.1:37445 -1620819925102 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqJ9DFk" -1620819927254 Marionette INFO Listening on port 42049 -1620819927309 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 -1620819929093 Marionette INFO Stopped listening on port 42049 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620819930598 geckodriver INFO Listening on 127.0.0.1:49117 -1620819930601 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaO97ts" -1620819932851 Marionette INFO Listening on port 39711 -1620819932909 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 -1620819935094 Marionette INFO Stopped listening on port 39711 -1620819936701 geckodriver INFO Listening on 127.0.0.1:34949 -1620819936706 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6sjtHK" -1620819938878 Marionette INFO Listening on port 43161 -1620819938914 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819944454 Marionette INFO Stopped listening on port 43161 -1620819945172 geckodriver INFO Listening on 127.0.0.1:40627 -1620819945176 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXUkb90" -1620819947275 Marionette INFO Listening on port 46477 -1620819947288 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620819953112 Marionette INFO Stopped listening on port 46477 -1620819955613 geckodriver INFO Listening on 127.0.0.1:54585 -1620819955617 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegySLTp" -1620819957742 Marionette INFO Listening on port 43847 -1620819957827 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 -1620819960460 Marionette INFO Stopped listening on port 43847 -1620819962941 geckodriver INFO Listening on 127.0.0.1:53547 -1620819962946 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebhxgFC" -1620819965138 Marionette INFO Listening on port 34303 -1620819965155 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 -1620819974843 Marionette INFO Stopped listening on port 34303 -1620819977351 geckodriver INFO Listening on 127.0.0.1:40245 -1620819977354 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUZ4Tn9" -1620819979577 Marionette INFO Listening on port 33089 -1620819979662 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 -1620819982927 Marionette INFO Stopped listening on port 33089 -1620819985543 geckodriver INFO Listening on 127.0.0.1:36981 -1620819985546 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNZpLvc" -1620819987639 Marionette INFO Listening on port 41915 -1620819987656 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 -1620819992390 Marionette INFO Stopped listening on port 41915 -1620819993082 geckodriver INFO Listening on 127.0.0.1:34133 -1620819993086 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWKoxQX" -1620819995430 Marionette INFO Listening on port 44085 -1620819995495 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820001640 Marionette INFO Stopped listening on port 44085 -1620820003146 geckodriver INFO Listening on 127.0.0.1:57139 -1620820003149 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQIgdIS" -1620820005295 Marionette INFO Listening on port 45993 -1620820005357 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820011936 Marionette INFO Stopped listening on port 45993 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - -1620820058707 geckodriver INFO Listening on 127.0.0.1:36917 -1620820058712 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTHs66A" -1620820060762 Marionette INFO Listening on port 39691 -1620820060844 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 -1620820062638 Marionette INFO Stopped listening on port 39691 -1620820064239 geckodriver INFO Listening on 127.0.0.1:34491 -1620820064243 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOqn3po" -1620820066364 Marionette INFO Listening on port 36489 -1620820066450 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 -1620820068594 Marionette INFO Stopped listening on port 36489 -1620820071214 geckodriver INFO Listening on 127.0.0.1:51755 -1620820071218 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevUJ2HY" -1620820073376 Marionette INFO Listening on port 44509 -1620820073426 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820078961 Marionette INFO Stopped listening on port 44509 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - -1620820080574 geckodriver INFO Listening on 127.0.0.1:55475 -1620820080578 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileIEOrSK" -1620820082767 Marionette INFO Listening on port 40649 -1620820082786 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820088682 Marionette INFO Stopped listening on port 40649 -1620820090333 geckodriver INFO Listening on 127.0.0.1:46943 -1620820090338 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiW5l2W" -1620820092418 Marionette INFO Listening on port 45863 -1620820092455 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 -1620820095105 Marionette INFO Stopped listening on port 45863 -1620820097614 geckodriver INFO Listening on 127.0.0.1:35149 -1620820097618 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileU45hqI" -1620820099523 Marionette INFO Listening on port 43455 -1620820099639 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 -1620820109647 Marionette INFO Stopped listening on port 43455 -1620820111163 geckodriver INFO Listening on 127.0.0.1:35013 -1620820111166 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileco2iDl" -1620820113343 Marionette INFO Listening on port 35173 -1620820113373 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 -1620820116770 Marionette INFO Stopped listening on port 35173 -1620820117487 geckodriver INFO Listening on 127.0.0.1:38211 -1620820117492 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileyybsqb" -1620820119647 Marionette INFO Listening on port 33209 -1620820119699 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 -1620820124382 Marionette INFO Stopped listening on port 33209 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620820127004 geckodriver INFO Listening on 127.0.0.1:47405 -1620820127008 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerUm1lj" -1620820129115 Marionette INFO Listening on port 40199 -1620820129217 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820136458 Marionette INFO Stopped listening on port 40199 -1620820138068 geckodriver INFO Listening on 127.0.0.1:37219 -1620820138071 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZ0wrwG" -1620820140195 Marionette INFO Listening on port 38283 -1620820140278 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820146894 Marionette INFO Stopped listening on port 38283 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620820174985 geckodriver INFO Listening on 127.0.0.1:38507 -1620820174990 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCjthFF" -1620820177324 Marionette INFO Listening on port 45027 -1620820177397 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 -1620820179127 Marionette INFO Stopped listening on port 45027 -1620820180628 geckodriver INFO Listening on 127.0.0.1:46681 -1620820180631 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4LxK75" -1620820182835 Marionette INFO Listening on port 43947 -1620820182938 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 -1620820185127 Marionette INFO Stopped listening on port 43947 -1620820187744 geckodriver INFO Listening on 127.0.0.1:56503 -1620820187748 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileD7sWGG" -1620820190068 Marionette INFO Listening on port 45495 -1620820190156 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820195798 Marionette INFO Stopped listening on port 45495 -1620820198399 geckodriver INFO Listening on 127.0.0.1:50051 -1620820198403 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileikUSHX" -1620820200638 Marionette INFO Listening on port 43243 -1620820200715 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820207108 Marionette INFO Stopped listening on port 43243 -1620820209744 geckodriver INFO Listening on 127.0.0.1:40475 -1620820209747 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecKztld" -1620820212047 Marionette INFO Listening on port 44365 -1620820212057 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 -1620820214787 Marionette INFO Stopped listening on port 44365 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620820215465 geckodriver INFO Listening on 127.0.0.1:54537 -1620820215468 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileHxMDUn" -1620820217681 Marionette INFO Listening on port 37645 -1620820217777 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 -1620820227762 Marionette INFO Stopped listening on port 37645 -1620820230264 geckodriver INFO Listening on 127.0.0.1:42037 -1620820230268 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVuGNqq" -1620820232410 Marionette INFO Listening on port 35115 -1620820232474 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 -1620820236244 Marionette INFO Stopped listening on port 35115 -1620820237835 geckodriver INFO Listening on 127.0.0.1:49773 -1620820237839 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledyGIx5" -1620820240174 Marionette INFO Listening on port 40373 -1620820240246 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 -1620820245075 Marionette INFO Stopped listening on port 40373 -1620820246697 geckodriver INFO Listening on 127.0.0.1:59589 -1620820246701 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3mV9MY" -1620820248872 Marionette INFO Listening on port 33147 -1620820248907 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820256237 Marionette INFO Stopped listening on port 33147 -1620820256941 geckodriver INFO Listening on 127.0.0.1:40905 -1620820256945 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9XuHIi" -1620820259311 Marionette INFO Listening on port 41701 -1620820259353 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820266144 Marionette INFO Stopped listening on port 41701 -1620820427690 geckodriver INFO Listening on 127.0.0.1:34513 -1620820427695 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4l2jh1" -1620820430351 Marionette INFO Listening on port 43267 -1620820430405 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820437185 geckodriver INFO Listening on 127.0.0.1:51529 -1620820437188 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAJra9a" -1620820439218 Marionette INFO Listening on port 43479 -1620820439295 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820446444 geckodriver INFO Listening on 127.0.0.1:37059 -1620820446448 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZw4mCQ" -1620820448692 Marionette INFO Listening on port 41501 -1620820448756 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 -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 -1620820458983 geckodriver INFO Listening on 127.0.0.1:38283 -1620820458988 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUcpWa5" -1620820461275 Marionette INFO Listening on port 34181 -1620820461295 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 -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 -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 -1620820472058 geckodriver INFO Listening on 127.0.0.1:42739 -1620820472063 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevDS134" -1620820474328 Marionette INFO Listening on port 34659 -1620820474369 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820481820 geckodriver INFO Listening on 127.0.0.1:37029 -1620820481824 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejupFFD" -1620820484020 Marionette INFO Listening on port 33505 -1620820484030 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820498735 geckodriver INFO Listening on 127.0.0.1:55375 -1620820499741 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0LMJLE" -1620820501983 Marionette INFO Listening on port 45967 -1620820502047 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820508915 geckodriver INFO Listening on 127.0.0.1:33229 -1620820508918 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewubBAS" -1620820510628 Marionette INFO Stopped listening on port 45967 -1620820511239 Marionette INFO Listening on port 40425 -1620820512127 Marionette INFO Stopped listening on port 33505 -1620820512349 Marionette INFO Stopped listening on port 34659 -1620820512682 Marionette INFO Stopped listening on port 34181 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620820513638 Marionette INFO Stopped listening on port 41501 -1620820513713 Marionette INFO Stopped listening on port 40425 -1620820513834 geckodriver INFO Listening on 127.0.0.1:50101 -1620820513839 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileae9KRG" -1620820514268 Marionette INFO Stopped listening on port 43479 -1620820516230 Marionette INFO Listening on port 45267 -1620820516247 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -Exiting due to channel error. -Exiting due to channel error. -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -Exiting due to channel error. -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -1620820555110 geckodriver INFO Listening on 127.0.0.1:52203 -1620820555116 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBcEQqw" -1620820557505 Marionette INFO Listening on port 42231 -1620820557523 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 -1620820559261 Marionette INFO Stopped listening on port 42231 -1620820561770 geckodriver INFO Listening on 127.0.0.1:55297 -1620820561774 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKqBdtE" -1620820563981 Marionette INFO Listening on port 39277 -1620820564082 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 -1620820566230 Marionette INFO Stopped listening on port 39277 -1620820567857 geckodriver INFO Listening on 127.0.0.1:47053 -1620820567861 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKQ215b" -1620820570003 Marionette INFO Listening on port 43271 -1620820570073 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820575759 Marionette INFO Stopped listening on port 43271 -1620820578378 geckodriver INFO Listening on 127.0.0.1:38441 -1620820578382 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileH36mKQ" -1620820580569 Marionette INFO Listening on port 43303 -1620820580589 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820586435 Marionette INFO Stopped listening on port 43303 -1620820588053 geckodriver INFO Listening on 127.0.0.1:48735 -1620820588058 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezmUNOI" -1620820590261 Marionette INFO Listening on port 35465 -1620820590268 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 -1620820592921 Marionette INFO Stopped listening on port 35465 -1620820594527 geckodriver INFO Listening on 127.0.0.1:43305 -1620820594532 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehnYCO4" -1620820596818 Marionette INFO Listening on port 42137 -1620820596845 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 -1620820606555 Marionette INFO Stopped listening on port 42137 -1620820609156 geckodriver INFO Listening on 127.0.0.1:60001 -1620820609160 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUKm2ms" -1620820611415 Marionette INFO Listening on port 34821 -1620820611468 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 -1620820614913 Marionette INFO Stopped listening on port 34821 -1620820616546 geckodriver INFO Listening on 127.0.0.1:45803 -1620820616549 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUfGUHR" -1620820618754 Marionette INFO Listening on port 39143 -1620820618857 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 -1620820623405 Marionette INFO Stopped listening on port 39143 -1620820625080 geckodriver INFO Listening on 127.0.0.1:56287 -1620820625084 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeU72nR" -1620820627283 Marionette INFO Listening on port 37311 -1620820627292 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820634745 Marionette INFO Stopped listening on port 37311 -1620820637271 geckodriver INFO Listening on 127.0.0.1:56351 -1620820637274 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNhajWR" -1620820639511 Marionette INFO Listening on port 44455 -1620820639580 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820646171 Marionette INFO Stopped listening on port 44455 -1620820647676 geckodriver INFO Listening on 127.0.0.1:47277 -1620820647680 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileyvpTbn" -1620820649945 Marionette INFO Listening on port 33371 -1620820649987 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820655365 Marionette INFO Stopped listening on port 33371 -1620820805814 geckodriver INFO Listening on 127.0.0.1:57607 -1620820805819 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileg1vaHu" -1620820808107 Marionette INFO Listening on port 36651 -1620820808128 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 -1620820809967 Marionette INFO Stopped listening on port 36651 -1620820812468 geckodriver INFO Listening on 127.0.0.1:36505 -1620820812471 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilen5qIg0" -1620820814588 Marionette INFO Listening on port 38141 -1620820814678 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 -1620820816911 Marionette INFO Stopped listening on port 38141 -1620820817628 geckodriver INFO Listening on 127.0.0.1:57379 -1620820817632 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJmDVSr" -1620820819898 Marionette INFO Listening on port 38113 -1620820819940 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820825452 Marionette INFO Stopped listening on port 38113 -1620820831966 geckodriver INFO Listening on 127.0.0.1:40027 -1620820831970 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9t4A71" -1620820834020 Marionette INFO Listening on port 34699 -1620820834090 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820839998 Marionette INFO Stopped listening on port 34699 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620820841632 geckodriver INFO Listening on 127.0.0.1:33823 -1620820841636 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileGReXbX" -1620820843801 Marionette INFO Listening on port 32991 -1620820843843 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 -1620820846453 Marionette INFO Stopped listening on port 32991 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - -1620820848053 geckodriver INFO Listening on 127.0.0.1:43713 -1620820848056 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0M8zDG" -1620820850246 Marionette INFO Listening on port 46831 -1620820850262 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 -1620820859968 Marionette INFO Stopped listening on port 46831 -1620820860592 geckodriver INFO Listening on 127.0.0.1:41491 -1620820860597 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaD4mHx" -1620820862491 Marionette INFO Listening on port 42905 -1620820862522 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 -1620820865915 Marionette INFO Stopped listening on port 42905 -1620820872439 geckodriver INFO Listening on 127.0.0.1:37333 -1620820872443 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJYWxX9" -1620820874004 Marionette INFO Listening on port 36567 -1620820874231 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 -1620820879003 Marionette INFO Stopped listening on port 36567 -1620820881523 geckodriver INFO Listening on 127.0.0.1:36835 -1620820881528 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVn73HJ" -1620820883676 Marionette INFO Listening on port 42467 -1620820883735 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820891215 Marionette INFO Stopped listening on port 42467 -1620820893826 geckodriver INFO Listening on 127.0.0.1:46295 -1620820893829 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6BLXDC" -1620820896068 Marionette INFO Listening on port 36195 -1620820896136 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820902675 Marionette INFO Stopped listening on port 36195 -1620820904180 geckodriver INFO Listening on 127.0.0.1:36153 -1620820904185 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileryZunV" -1620820906445 Marionette INFO Listening on port 37197 -1620820906497 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620820911873 Marionette INFO Stopped listening on port 37197 -1620821084075 geckodriver INFO Listening on 127.0.0.1:54417 -1620821084080 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiPBIwi" -1620821086217 Marionette INFO Listening on port 41763 -1620821086286 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 -1620821088092 Marionette INFO Stopped listening on port 41763 -1620821090699 geckodriver INFO Listening on 127.0.0.1:52951 -1620821090704 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilebMS4uM" -1620821092955 Marionette INFO Listening on port 37081 -1620821093012 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 -1620821095157 Marionette INFO Stopped listening on port 37081 -1620821095875 geckodriver INFO Listening on 127.0.0.1:55565 -1620821095880 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3cynwt" -1620821098038 Marionette INFO Listening on port 35463 -1620821098090 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620821103510 Marionette INFO Stopped listening on port 35463 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - -1620821110060 geckodriver INFO Listening on 127.0.0.1:60027 -1620821110064 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0aLNvo" -1620821112068 Marionette INFO Listening on port 44593 -1620821112101 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620821117924 Marionette INFO Stopped listening on port 44593 -1620821119546 geckodriver INFO Listening on 127.0.0.1:47311 -1620821119551 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileI0RR1m" -1620821121679 Marionette INFO Listening on port 34195 -1620821121758 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 -1620821124362 Marionette INFO Stopped listening on port 34195 -1620821125956 geckodriver INFO Listening on 127.0.0.1:35225 -1620821125960 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejvCs7Q" -1620821128148 Marionette INFO Listening on port 39179 -1620821128165 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 -1620821137711 Marionette INFO Stopped listening on port 39179 -1620821139229 geckodriver INFO Listening on 127.0.0.1:36077 -1620821139233 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKYyIIe" -1620821141238 Marionette INFO Listening on port 36893 -1620821141341 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 -1620821144532 Marionette INFO Stopped listening on port 36893 -1620821147049 geckodriver INFO Listening on 127.0.0.1:37437 -1620821147053 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4lTjUp" -1620821149204 Marionette INFO Listening on port 40013 -1620821149261 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 -1620821153681 Marionette INFO Stopped listening on port 40013 -1620821156195 geckodriver INFO Listening on 127.0.0.1:45097 -1620821156199 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0EvbG8" -1620821158428 Marionette INFO Listening on port 41133 -1620821158506 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620821165850 Marionette INFO Stopped listening on port 41133 -1620821167369 geckodriver INFO Listening on 127.0.0.1:59593 -1620821167373 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSvUQsX" -1620821169532 Marionette INFO Listening on port 46335 -1620821169580 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620821176176 Marionette INFO Stopped listening on port 46335 -1620821177783 geckodriver INFO Listening on 127.0.0.1:44461 -1620821177787 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepoOMUD" -1620821180108 Marionette INFO Listening on port 33425 -1620821180194 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620821185529 Marionette INFO Stopped listening on port 33425 -1620821658343 geckodriver INFO Listening on 127.0.0.1:42153 -1620821658348 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaeSZiF" -1620821660636 Marionette INFO Listening on port 39705 -1620821660654 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 -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/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -Exiting due to channel error. -1620821671472 geckodriver INFO Listening on 127.0.0.1:59927 -1620821672479 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6wIZG3" -1620821674783 Marionette INFO Listening on port 33721 -1620821674790 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 -1620821676547 Marionette INFO Stopped listening on port 33721 -1620821677169 geckodriver INFO Listening on 127.0.0.1:53659 -1620821677172 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileytMvtw" -1620821679430 Marionette INFO Listening on port 38721 -1620821679480 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 -1620821681715 Marionette INFO Stopped listening on port 38721 -1620821683335 geckodriver INFO Listening on 127.0.0.1:40599 -1620821683339 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezOV36X" -1620821685649 Marionette INFO Listening on port 34779 -1620821685745 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620821691168 Marionette INFO Stopped listening on port 34779 -1620821691928 geckodriver INFO Listening on 127.0.0.1:34567 -1620821691931 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehDCJHv" -1620821694127 Marionette INFO Listening on port 43131 -1620821694139 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620821695239 Marionette INFO Stopped listening on port 43131 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1620821697858 geckodriver INFO Listening on 127.0.0.1:46237 -1620821697862 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2kvDyg" -1620821700153 Marionette INFO Listening on port 39385 -1620821700170 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 -1620821702820 Marionette INFO Stopped listening on port 39385 -1620821705429 geckodriver INFO Listening on 127.0.0.1:36845 -1620821705432 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefxWklV" -1620821707751 Marionette INFO Listening on port 40761 -1620821707841 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 -1620821711670 Marionette INFO Stopped listening on port 40761 -1620821712398 geckodriver INFO Listening on 127.0.0.1:42145 -1620821712401 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehIvuF3" -1620821714599 Marionette INFO Listening on port 39417 -1620821714609 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 -1620821717394 Marionette INFO Stopped listening on port 39417 -1620821719972 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUXevov" -1620821719968 geckodriver INFO Listening on 127.0.0.1:34173 -1620821722269 Marionette INFO Listening on port 34825 -1620821722282 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 -1620821726092 Marionette INFO Stopped listening on port 34825 -1620821728698 geckodriver INFO Listening on 127.0.0.1:58459 -1620821728701 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYeAyAh" -1620821731047 Marionette INFO Listening on port 45531 -1620821731109 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 -Exiting due to channel error. -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -Exiting due to channel error. -1620821899750 geckodriver INFO Listening on 127.0.0.1:38617 -1620821899756 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXmBFo8" -1620821902078 Marionette INFO Listening on port 42437 -1620821902164 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 -1620821903976 Marionette INFO Stopped listening on port 42437 -1620821906480 geckodriver INFO Listening on 127.0.0.1:55725 -1620821906484 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezecgCs" -1620821908741 Marionette INFO Listening on port 42385 -1620821908792 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 -1620821911142 Marionette INFO Stopped listening on port 42385 -1620821912761 geckodriver INFO Listening on 127.0.0.1:56641 -1620821912764 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileajkR5M" -1620821914988 Marionette INFO Listening on port 38729 -1620821915072 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620821920490 Marionette INFO Stopped listening on port 38729 -1620821923112 geckodriver INFO Listening on 127.0.0.1:52815 -1620821923117 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJRhX6Z" -1620821925293 Marionette INFO Listening on port 38479 -1620821925326 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620821926339 Marionette INFO Stopped listening on port 38479 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - -1620821928872 geckodriver INFO Listening on 127.0.0.1:52345 -1620821928875 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePYJT19" -1620821931070 Marionette INFO Listening on port 36529 -1620821931092 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 -1620821933955 Marionette INFO Stopped listening on port 36529 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620821935440 geckodriver INFO Listening on 127.0.0.1:53105 -1620821935443 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNbwj4J" -1620821937560 Marionette INFO Listening on port 38357 -1620821937650 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 -1620821941471 Marionette INFO Stopped listening on port 38357 -[GFX1-]: Receive IPC close with reason=AbnormalShutdown -Exiting due to channel error. -1620821970523 geckodriver INFO Listening on 127.0.0.1:38287 -1620821970527 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile90k9GU" -1620821973164 Marionette INFO Listening on port 38745 -1620821973238 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 -1620821975030 Marionette INFO Stopped listening on port 38745 -1620821975738 geckodriver INFO Listening on 127.0.0.1:38669 -1620821975743 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileUJ7BrT" -1620821977887 Marionette INFO Listening on port 45131 -1620821977950 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 -1620821980341 Marionette INFO Stopped listening on port 45131 -1620821981050 geckodriver INFO Listening on 127.0.0.1:41775 -1620821981053 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileyzLxsV" -1620821983182 Marionette INFO Listening on port 43269 -1620821983260 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620821988821 Marionette INFO Stopped listening on port 43269 -1620821991403 geckodriver INFO Listening on 127.0.0.1:44849 -1620821991407 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepArPD0" -1620821993753 Marionette INFO Listening on port 36259 -1620821993817 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620821994599 Marionette INFO Stopped listening on port 36259 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1620821995300 geckodriver INFO Listening on 127.0.0.1:48895 -1620821995304 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletGR7wT" -1620821997723 Marionette INFO Listening on port 40085 -1620821997826 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 -1620822002590 Marionette INFO Stopped listening on port 40085 -1620822002698 geckodriver INFO Listening on 127.0.0.1:38095 -1620822002703 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilem133Ql" -1620822005140 Marionette INFO Listening on port 38331 -1620822005211 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 -1620822006502 geckodriver INFO Listening on 127.0.0.1:49761 -1620822007508 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAGlxgW" -Exiting due to channel error. -1620822039519 geckodriver INFO Listening on 127.0.0.1:54375 -1620822039524 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKRoiob" -1620822041756 Marionette INFO Listening on port 34333 -1620822041832 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 -1620822043650 Marionette INFO Stopped listening on port 34333 -1620822046175 geckodriver INFO Listening on 127.0.0.1:51125 -1620822046178 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileynSrQf" -1620822048277 Marionette INFO Listening on port 45087 -1620822048291 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 -1620822050644 Marionette INFO Stopped listening on port 45087 -1620822052257 geckodriver INFO Listening on 127.0.0.1:48755 -1620822052262 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile01iJqq" -1620822054412 Marionette INFO Listening on port 45049 -1620822054468 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822060151 Marionette INFO Stopped listening on port 45049 -1620822061765 geckodriver INFO Listening on 127.0.0.1:53327 -1620822061768 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6fqK3M" -1620822063949 Marionette INFO Listening on port 38927 -1620822063974 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822064734 Marionette INFO Stopped listening on port 38927 -1620822067215 geckodriver INFO Listening on 127.0.0.1:43277 -1620822067219 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekxodCa" -1620822069396 Marionette INFO Listening on port 37679 -1620822069428 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 -1620822071994 Marionette INFO Stopped listening on port 37679 -1620822074600 geckodriver INFO Listening on 127.0.0.1:34993 -1620822074604 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileqaNkwy" -1620822076816 Marionette INFO Listening on port 42895 -1620822076911 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 -1620822080702 Marionette INFO Stopped listening on port 42895 -1620822083314 geckodriver INFO Listening on 127.0.0.1:51519 -1620822083318 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileweOTSS" -1620822085486 Marionette INFO Listening on port 35613 -1620822085526 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 -1620822088316 Marionette INFO Stopped listening on port 35613 -1620822089933 geckodriver INFO Listening on 127.0.0.1:43417 -1620822089937 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemqS2L7" -1620822198728 geckodriver INFO Listening on 127.0.0.1:52833 -1620822198733 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZ8osaQ" -1620822201221 Marionette INFO Listening on port 33635 -1620822201245 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 -1620822203021 Marionette INFO Stopped listening on port 33635 -1620822205638 geckodriver INFO Listening on 127.0.0.1:53895 -1620822205643 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoaxFom" -1620822207927 Marionette INFO Listening on port 37809 -1620822207953 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 -1620822210128 Marionette INFO Stopped listening on port 37809 -1620822212742 geckodriver INFO Listening on 127.0.0.1:56687 -1620822213748 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileM8L0uA" -1620822216121 Marionette INFO Listening on port 44103 -1620822216156 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822221560 Marionette INFO Stopped listening on port 44103 -1620822222275 geckodriver INFO Listening on 127.0.0.1:57653 -1620822222279 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegcJtbu" -1620822224502 Marionette INFO Listening on port 44019 -1620822224585 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822229465 Marionette INFO Stopped listening on port 44019 -1620822232088 geckodriver INFO Listening on 127.0.0.1:60921 -1620822232093 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5SFDg0" -1620822234350 Marionette INFO Listening on port 35399 -1620822234401 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 -1620822236989 Marionette INFO Stopped listening on port 35399 -1620822239502 geckodriver INFO Listening on 127.0.0.1:36981 -1620822239506 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilef3vn0E" -1620822241708 Marionette INFO Listening on port 41917 -1620822241733 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 -1620822251318 Marionette INFO Stopped listening on port 41917 -1620822251945 geckodriver INFO Listening on 127.0.0.1:40949 -1620822251948 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1XWxCy" -1620822254216 Marionette INFO Listening on port 39135 -1620822254257 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 -1620822257591 Marionette INFO Stopped listening on port 39135 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620822259114 geckodriver INFO Listening on 127.0.0.1:59543 -1620822259117 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeMvKZy" -1620822261420 Marionette INFO Listening on port 43999 -1620822261427 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 -1620822265780 Marionette INFO Stopped listening on port 43999 -1620822266499 geckodriver INFO Listening on 127.0.0.1:55923 -1620822266503 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilem2K8co" -1620822268772 Marionette INFO Listening on port 33205 -1620822268812 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822276156 Marionette INFO Stopped listening on port 33205 -1620822278683 geckodriver INFO Listening on 127.0.0.1:44561 -1620822278687 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerjS4Wg" -1620822280857 Marionette INFO Listening on port 38057 -1620822280894 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822287467 Marionette INFO Stopped listening on port 38057 -1620822289088 geckodriver INFO Listening on 127.0.0.1:59383 -1620822289093 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileShwO6l" -1620822291407 Marionette INFO Listening on port 43743 -1620822291500 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822298102 Marionette INFO Stopped listening on port 43743 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620822617519 geckodriver INFO Listening on 127.0.0.1:42781 -1620822617524 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9UaZw8" -1620822619908 Marionette INFO Listening on port 37881 -1620822619943 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 -1620822621770 Marionette INFO Stopped listening on port 37881 -1620822623349 geckodriver INFO Listening on 127.0.0.1:49225 -1620822623355 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemSd7We" -1620822625554 Marionette INFO Listening on port 36617 -1620822625564 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 -1620822627773 Marionette INFO Stopped listening on port 36617 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - -1620822630290 geckodriver INFO Listening on 127.0.0.1:45071 -1620822630294 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileP2lPBp" -1620822632446 Marionette INFO Listening on port 40597 -1620822632501 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822637998 Marionette INFO Stopped listening on port 40597 -1620822640501 geckodriver INFO Listening on 127.0.0.1:44519 -1620822640504 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile56QDmi" -1620822642708 Marionette INFO Listening on port 39437 -1620822642712 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822647540 Marionette INFO Stopped listening on port 39437 -1620822649143 geckodriver INFO Listening on 127.0.0.1:53257 -1620822649147 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZjHCGc" -1620822651406 Marionette INFO Listening on port 39745 -1620822651454 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 -1620822653400 Marionette INFO Stopped listening on port 39745 -1620822656019 geckodriver INFO Listening on 127.0.0.1:38185 -1620822656023 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKn0tzi" -1620822658256 Marionette INFO Listening on port 46409 -1620822658330 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 -1620822667410 Marionette INFO Stopped listening on port 46409 -1620822668101 geckodriver INFO Listening on 127.0.0.1:56685 -1620822668105 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKhoHGY" -1620822670254 Marionette INFO Listening on port 42179 -1620822670311 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 -1620822673005 Marionette INFO Stopped listening on port 42179 -1620822675590 geckodriver INFO Listening on 127.0.0.1:39263 -1620822675593 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletXfkCB" -1620822677893 Marionette INFO Listening on port 37939 -1620822677906 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 -1620822691933 Marionette INFO Stopped listening on port 37939 -1620822693541 geckodriver INFO Listening on 127.0.0.1:53145 -1620822693544 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekmwAAX" -1620822695891 Marionette INFO Listening on port 43141 -1620822695954 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822702877 Marionette INFO Stopped listening on port 43141 -1620822703653 geckodriver INFO Listening on 127.0.0.1:56829 -1620822704657 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekRUqMr" -1620822706754 Marionette INFO Listening on port 46009 -1620822706777 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822712890 Marionette INFO Stopped listening on port 46009 -1620822714369 geckodriver INFO Listening on 127.0.0.1:57959 -1620822715373 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileODwbq9" -1620822717748 Marionette INFO Listening on port 35889 -1620822717783 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822723887 Marionette INFO Stopped listening on port 35889 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000E,name=PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete) Channel error: cannot send/recv - -1620822766342 geckodriver INFO Listening on 127.0.0.1:47937 -1620822766347 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJeb0n5" -1620822768687 Marionette INFO Listening on port 41301 -1620822768758 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 -1620822770573 Marionette INFO Stopped listening on port 41301 -1620822773081 geckodriver INFO Listening on 127.0.0.1:60463 -1620822774087 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQaUO1X" -1620822776198 Marionette INFO Listening on port 43115 -1620822776295 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 -1620822778458 Marionette INFO Stopped listening on port 43115 -1620822781066 geckodriver INFO Listening on 127.0.0.1:52565 -1620822781070 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiq3pUi" -1620822783331 Marionette INFO Listening on port 40853 -1620822783376 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822788779 Marionette INFO Stopped listening on port 40853 -1620822791382 geckodriver INFO Listening on 127.0.0.1:60131 -1620822791385 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBgezzo" -1620822793608 Marionette INFO Listening on port 36293 -1620822793692 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822798589 Marionette INFO Stopped listening on port 36293 -1620822800072 geckodriver INFO Listening on 127.0.0.1:35369 -1620822800077 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWQBNj0" -1620822802302 Marionette INFO Listening on port 44915 -1620822802384 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 -1620822804270 Marionette INFO Stopped listening on port 44915 -1620822809771 geckodriver INFO Listening on 127.0.0.1:50175 -1620822809774 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilefBGtFK" -1620822811888 Marionette INFO Listening on port 46053 -1620822811984 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 -1620822815733 Marionette INFO Stopped listening on port 46053 -1620822817336 geckodriver INFO Listening on 127.0.0.1:55575 -1620822817341 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5DFs91" -1620822819566 Marionette INFO Listening on port 35063 -1620822819651 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 -1620822827451 Marionette INFO Stopped listening on port 35063 -1620822829059 geckodriver INFO Listening on 127.0.0.1:51601 -1620822829064 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9mWwJA" -1620822831247 Marionette INFO Listening on port 42941 -1620822831270 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 -1620822836059 Marionette INFO Stopped listening on port 42941 -1620822837665 geckodriver INFO Listening on 127.0.0.1:52775 -1620822837670 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSrFyVF" -1620822839908 Marionette INFO Listening on port 44337 -1620822839977 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822846629 Marionette INFO Stopped listening on port 44337 -1620822849237 geckodriver INFO Listening on 127.0.0.1:39473 -1620822849241 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6NMPBv" -1620822851549 Marionette INFO Listening on port 33269 -1620822851648 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822857515 Marionette INFO Stopped listening on port 33269 -1620822859016 geckodriver INFO Listening on 127.0.0.1:50165 -1620822859022 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiler55EyL" -1620822861201 Marionette INFO Listening on port 43043 -1620822861230 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620822867156 Marionette INFO Stopped listening on port 43043 -1620823576687 geckodriver INFO Listening on 127.0.0.1:45317 -1620823576692 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFt3aq9" -1620823579041 Marionette INFO Listening on port 36587 -1620823579100 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 -1620823580845 Marionette INFO Stopped listening on port 36587 -1620823583374 geckodriver INFO Listening on 127.0.0.1:36779 -1620823583377 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenOl9m5" -1620823585588 Marionette INFO Listening on port 42299 -1620823585686 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 -1620823587854 Marionette INFO Stopped listening on port 42299 -1620823590478 geckodriver INFO Listening on 127.0.0.1:59981 -1620823590481 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileg46O3c" -1620823592861 Marionette INFO Listening on port 42287 -1620823592888 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620823598299 Marionette INFO Stopped listening on port 42287 -1620823600827 geckodriver INFO Listening on 127.0.0.1:46863 -1620823600830 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLiicXV" -1620823603100 Marionette INFO Listening on port 44471 -1620823603137 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620823607996 Marionette INFO Stopped listening on port 44471 - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - -1620823609620 geckodriver INFO Listening on 127.0.0.1:39985 -1620823609625 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoP3Srm" -1620823611893 Marionette INFO Listening on port 42371 -1620823611932 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 -1620823613802 Marionette INFO Stopped listening on port 42371 -1620823615423 geckodriver INFO Listening on 127.0.0.1:42325 -1620823615428 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileNENVHz" -1620823617782 Marionette INFO Listening on port 40491 -1620823617836 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 -1620823621872 Marionette INFO Stopped listening on port 40491 -1620823622585 geckodriver INFO Listening on 127.0.0.1:39323 -1620823622588 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletz8mCd" -1620823624831 Marionette INFO Listening on port 39623 -1620823624897 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 -1620823632703 Marionette INFO Stopped listening on port 39623 -1620823633432 geckodriver INFO Listening on 127.0.0.1:44459 -1620823633436 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOs9y3K" -1620823635822 Marionette INFO Listening on port 33559 -1620823635843 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 -1620823640611 Marionette INFO Stopped listening on port 33559 -1620823644143 geckodriver INFO Listening on 127.0.0.1:55283 -1620823644146 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMSzAdm" -1620823646461 Marionette INFO Listening on port 34943 -1620823646554 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620823653323 Marionette INFO Stopped listening on port 34943 -1620823654061 geckodriver INFO Listening on 127.0.0.1:55745 -1620823654065 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileREUhNR" -1620823656199 Marionette INFO Listening on port 41259 -1620823656276 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620823662141 Marionette INFO Stopped listening on port 41259 -1620823663771 geckodriver INFO Listening on 127.0.0.1:50035 -1620823663774 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXjX3sV" -1620823665968 Marionette INFO Listening on port 42863 -1620823665986 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620823673127 Marionette INFO Stopped listening on port 42863 -1620828210224 geckodriver INFO Listening on 127.0.0.1:60195 -1620828210229 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilec33O8V" -1620828212519 Marionette INFO Listening on port 34029 -1620828212540 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 -1620828214302 Marionette INFO Stopped listening on port 34029 -1620828216786 geckodriver INFO Listening on 127.0.0.1:58473 -1620828216790 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelP4OTK" -1620828218973 Marionette INFO Listening on port 44779 -1620828218997 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 -1620828221126 Marionette INFO Stopped listening on port 44779 -1620828222610 geckodriver INFO Listening on 127.0.0.1:46541 -1620828222613 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileK7tjCe" -1620828224830 Marionette INFO Listening on port 43835 -1620828224921 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620828226957 Marionette INFO Stopped listening on port 43835 -1620828229453 geckodriver INFO Listening on 127.0.0.1:54711 -1620828229456 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilewLsinn" -1620828231649 Marionette INFO Listening on port 34723 -1620828231666 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 -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 -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 -1620828233866 Marionette INFO Stopped listening on port 34723 -1620828236351 geckodriver INFO Listening on 127.0.0.1:59077 -1620828237358 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile29Imif" -1620828239415 Marionette INFO Listening on port 45491 -1620828239468 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620828241185 Marionette INFO Stopped listening on port 45491 -1620828243789 geckodriver INFO Listening on 127.0.0.1:53439 -1620828243793 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejqQswi" -1620828246001 Marionette INFO Listening on port 34695 -1620828246102 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620828247769 Marionette INFO Stopped listening on port 34695 -1620828249363 geckodriver INFO Listening on 127.0.0.1:40285 -1620828249367 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile55QFHP" -1620828251639 Marionette INFO Listening on port 46659 -1620828251691 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620828253337 Marionette INFO Stopped listening on port 46659 -1620828254839 geckodriver INFO Listening on 127.0.0.1:43207 -1620828254843 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCQNSPY" -1620828256937 Marionette INFO Listening on port 39509 -1620828256951 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620828258642 Marionette INFO Stopped listening on port 39509 -1620828261260 geckodriver INFO Listening on 127.0.0.1:58539 -1620828261263 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelHKU4J" -1620828263422 Marionette INFO Listening on port 43875 -1620828263468 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 -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 -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 -1620828265649 Marionette INFO Stopped listening on port 43875 -1620828269241 geckodriver INFO Listening on 127.0.0.1:52389 -1620828269244 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilex0E7dU" -1620828271443 Marionette INFO Listening on port 35629 -1620828271451 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 -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 -1620828273306 Marionette INFO Stopped listening on port 35629 -1620828274942 geckodriver INFO Listening on 127.0.0.1:33155 -1620828274946 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2hVRYX" -1620828277032 Marionette INFO Listening on port 39205 -1620828277059 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 -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 -1620828278902 Marionette INFO Stopped listening on port 39205 -1620828372670 geckodriver INFO Listening on 127.0.0.1:54151 -1620828372674 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZnc4CI" -1620828375016 Marionette INFO Listening on port 40687 -1620828375080 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 -1620828376871 Marionette INFO Stopped listening on port 40687 -1620828380375 geckodriver INFO Listening on 127.0.0.1:37801 -1620828380379 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenOSNbW" -1620828382641 Marionette INFO Listening on port 42183 -1620828382687 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 -1620828384823 Marionette INFO Stopped listening on port 42183 -1620828386444 geckodriver INFO Listening on 127.0.0.1:58575 -1620828386449 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLHukWs" -1620828388690 Marionette INFO Listening on port 33727 -1620828388756 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620828389764 Marionette INFO Stopped listening on port 33727 -1620828391417 geckodriver INFO Listening on 127.0.0.1:44651 -1620828391420 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileWY1RdC" -1620828393879 Marionette INFO Listening on port 46707 -1620828393930 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620828394759 Marionette INFO Stopped listening on port 46707 -1620828396404 geckodriver INFO Listening on 127.0.0.1:43907 -1620828396409 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileEbkJRC" -1620828398736 Marionette INFO Listening on port 39557 -1620828398818 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 -1620828399341 Marionette INFO Stopped listening on port 39557 -1620828400039 geckodriver INFO Listening on 127.0.0.1:51067 -1620828400042 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRWyPNy" -1620828402320 Marionette INFO Listening on port 37367 -1620828402348 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 -1620828402893 Marionette INFO Stopped listening on port 37367 -1620828405491 geckodriver INFO Listening on 127.0.0.1:38907 -1620828405495 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0hvkVZ" -1620828407815 Marionette INFO Listening on port 43491 -1620828407903 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 -1620828408436 Marionette INFO Stopped listening on port 43491 -1620828409228 geckodriver INFO Listening on 127.0.0.1:55619 -1620828409232 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoMt8UR" -1620828411539 Marionette INFO Listening on port 43841 -1620828411641 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 -1620828412210 Marionette INFO Stopped listening on port 43841 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1620828412915 geckodriver INFO Listening on 127.0.0.1:50147 -1620828412920 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileulBLYs" -1620828415189 Marionette INFO Listening on port 38915 -1620828415228 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620828416311 Marionette INFO Stopped listening on port 38915 -1620828417017 geckodriver INFO Listening on 127.0.0.1:44849 -1620828417021 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFVBiOd" -1620828419310 Marionette INFO Listening on port 40963 -1620828419331 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620828420060 Marionette INFO Stopped listening on port 40963 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1620828420759 geckodriver INFO Listening on 127.0.0.1:47471 -1620828420762 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletx1yYP" -1620828423007 Marionette INFO Listening on port 46523 -1620828423069 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620828423761 Marionette INFO Stopped listening on port 46523 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1620829016683 geckodriver INFO Listening on 127.0.0.1:33875 -1620829016687 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenNaoCQ" -1620829018894 Marionette INFO Listening on port 33013 -1620829018996 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 -1620829020756 Marionette INFO Stopped listening on port 33013 -1620829022275 geckodriver INFO Listening on 127.0.0.1:42305 -1620829022279 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileM3ZeK2" -1620829024518 Marionette INFO Listening on port 44655 -1620829024588 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 -1620829026806 Marionette INFO Stopped listening on port 44655 -1620829027519 geckodriver INFO Listening on 127.0.0.1:47795 -1620829027522 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOwZNyO" -1620829029666 Marionette INFO Listening on port 46159 -1620829029729 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620829035299 Marionette INFO Stopped listening on port 46159 -1620829037914 geckodriver INFO Listening on 127.0.0.1:33703 -1620829037917 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile02ppwg" -1620829040089 Marionette INFO Listening on port 45517 -1620829040123 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620829045182 Marionette INFO Stopped listening on port 45517 -1620829045891 geckodriver INFO Listening on 127.0.0.1:56043 -1620829045895 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8Inz73" -1620829048081 Marionette INFO Listening on port 46133 -1620829048105 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 -1620829050188 Marionette INFO Stopped listening on port 46133 -1620829051676 geckodriver INFO Listening on 127.0.0.1:58183 -1620829051681 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelvWO57" -1620829053953 Marionette INFO Listening on port 41303 -1620829053988 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 -1620829057772 Marionette INFO Stopped listening on port 41303 -1620829059295 geckodriver INFO Listening on 127.0.0.1:52431 -1620829059298 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9CPSj2" -1620829061490 Marionette INFO Listening on port 39543 -1620829061505 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 -1620829069296 Marionette INFO Stopped listening on port 39543 -1620829070817 geckodriver INFO Listening on 127.0.0.1:33919 -1620829070820 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledl7zb7" -1620829072981 Marionette INFO Listening on port 45865 -1620829073027 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 -1620829077852 Marionette INFO Stopped listening on port 45865 -1620829079378 geckodriver INFO Listening on 127.0.0.1:58247 -1620829079381 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRzJ1s8" -1620829081655 Marionette INFO Listening on port 46627 -1620829081688 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620829088328 Marionette INFO Stopped listening on port 46627 -1620829090953 geckodriver INFO Listening on 127.0.0.1:42439 -1620829090957 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilex45rPz" -1620829093314 Marionette INFO Listening on port 38801 -1620829093366 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620829099231 Marionette INFO Stopped listening on port 38801 -1620829101741 geckodriver INFO Listening on 127.0.0.1:48749 -1620829101746 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXRoL9K" -1620829104107 Marionette INFO Listening on port 46685 -1620829104156 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1620829111266 Marionette INFO Stopped listening on port 46685 -1621579532860 geckodriver INFO Listening on 127.0.0.1:40429 -1621579532867 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZ9Jwya" -1621579535004 Marionette INFO Listening on port 34513 -1621579535076 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 -1621579535886 Marionette INFO Stopped listening on port 34513 -1621580186355 geckodriver INFO Listening on 127.0.0.1:59757 -1621580186362 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileq54jdT" -1621580188671 Marionette INFO Listening on port 40185 -1621580188770 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 -1621580189271 Marionette INFO Stopped listening on port 40185 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1621580191763 geckodriver INFO Listening on 127.0.0.1:47837 -1621580191767 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVvdp38" -1621580194027 Marionette INFO Listening on port 36693 -1621580194076 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1621580194745 Marionette INFO Stopped listening on port 36693 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1621582756067 geckodriver INFO Listening on 127.0.0.1:41371 -1621582756074 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilexSf4QW" -1621582758269 Marionette INFO Listening on port 33367 -1621582758285 Marionette WARN TLS certificate errors will be ignored for this session -1621582758430 geckodriver INFO Listening on 127.0.0.1:36985 -1621582758435 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile1Mw6i3" -1621582760763 Marionette INFO Listening on port 41241 -1621582760863 Marionette WARN TLS certificate errors will be ignored for this session - -###!!! [Parent][MessageChannel] Error: (msgtype=0xB000D,name=PBackgroundIDBDatabase::Msg_Invalidate) Channel error: cannot send/recv - -1621582769852 Marionette INFO Stopped listening on port 41241 -1621582770065 Marionette INFO Stopped listening on port 33367 -1621582773287 geckodriver INFO Listening on 127.0.0.1:56957 -1621582773293 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejsVOsT" -1621582775671 Marionette INFO Listening on port 43891 -1621582775700 Marionette WARN TLS certificate errors will be ignored for this session -1621582775872 geckodriver INFO Listening on 127.0.0.1:39075 -1621582776879 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTyNBEi" -1621582779110 Marionette INFO Listening on port 36677 -1621582779188 Marionette WARN TLS certificate errors will be ignored for this session -1621582781516 Marionette INFO Stopped listening on port 36677 -1621582786330 Marionette INFO Stopped listening on port 43891 -1621582800983 geckodriver INFO Listening on 127.0.0.1:41183 -1621582800990 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileg7wzdy" -1621582803303 Marionette INFO Listening on port 41455 -1621582803397 Marionette WARN TLS certificate errors will be ignored for this session -1621582803525 geckodriver INFO Listening on 127.0.0.1:35019 -1621582804532 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6C3oUq" -1621582806822 Marionette INFO Listening on port 41247 -1621582806838 Marionette WARN TLS certificate errors will be ignored for this session -1621582810758 Marionette INFO Stopped listening on port 41247 -1621582811555 Marionette INFO Stopped listening on port 41455 -1621582889663 geckodriver INFO Listening on 127.0.0.1:44791 -1621582889668 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile2BUBQ1" -1621582891999 Marionette INFO Listening on port 37073 -1621582892078 Marionette WARN TLS certificate errors will be ignored for this session -1621582892251 geckodriver INFO Listening on 127.0.0.1:50373 -1621582892258 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5vLCSk" -1621582894489 Marionette INFO Listening on port 40471 -1621582894576 Marionette WARN TLS certificate errors will be ignored for this session -1621582906885 geckodriver INFO Listening on 127.0.0.1:33033 -1621582906890 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepkHAv9" -1621582909165 Marionette INFO Listening on port 32829 -1621582909196 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 -1621582909698 Marionette INFO Stopped listening on port 32829 -1621582911282 geckodriver INFO Listening on 127.0.0.1:56527 -1621582911284 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYnyOrm" -1621582913590 Marionette INFO Listening on port 42393 -1621582913694 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1621582914339 Marionette INFO Stopped listening on port 42393 -1621582948909 Marionette INFO Stopped listening on port 40471 -1621583171497 geckodriver INFO Listening on 127.0.0.1:56941 -1621583171505 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezfbS5r" -1621583173808 Marionette INFO Listening on port 44953 -1621583173813 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 -1621583174290 Marionette INFO Stopped listening on port 44953 -1621583175810 geckodriver INFO Listening on 127.0.0.1:51943 -1621583175814 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileTwbZ9n" -1621583177991 Marionette INFO Listening on port 38293 -1621583178029 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1621583178694 Marionette INFO Stopped listening on port 38293 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1621583370579 geckodriver INFO Listening on 127.0.0.1:42369 -1621583370587 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledwB8uE" -1621583372970 Marionette INFO Listening on port 41661 -1621583372993 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 -1621583373459 Marionette INFO Stopped listening on port 41661 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1621583374147 geckodriver INFO Listening on 127.0.0.1:54097 -1621583374151 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJqzvW7" -1621583376400 Marionette INFO Listening on port 40327 -1621583376458 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1621583377073 Marionette INFO Stopped listening on port 40327 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1621583430771 geckodriver INFO Listening on 127.0.0.1:57741 -1621583430778 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile70t5pY" -1621583433046 Marionette INFO Listening on port 39121 -1621583433085 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 -1621583433568 Marionette INFO Stopped listening on port 39121 -1621583434264 geckodriver INFO Listening on 127.0.0.1:46977 -1621583434267 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVRnko4" -1621583436559 Marionette INFO Listening on port 45017 -1621583436579 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1621583437216 Marionette INFO Stopped listening on port 45017 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1621583473931 geckodriver INFO Listening on 127.0.0.1:34411 -1621583473939 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletZ5s0F" -1621583476207 Marionette INFO Listening on port 32923 -1621583476246 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 -1621583476717 Marionette INFO Stopped listening on port 32923 -1621583478298 geckodriver INFO Listening on 127.0.0.1:36833 -1621583478302 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehSYacK" -1621583480502 Marionette INFO Listening on port 33497 -1621583480509 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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1621583481163 Marionette INFO Stopped listening on port 33497 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1621583493380 geckodriver INFO Listening on 127.0.0.1:53327 -1621583493387 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileirgSvH" -1621583495673 Marionette INFO Listening on port 33579 -1621583495694 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 -1621583496143 Marionette INFO Stopped listening on port 33579 -JavaScript error: resource://gre/modules/UrlClassifierListManager.jsm, line 691: TypeError: this.tablesData[table] is undefined -1621583497728 geckodriver INFO Listening on 127.0.0.1:33299 -1621583497732 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileLAUZM7" -1621583500009 Marionette INFO Listening on port 42667 -1621583500038 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 -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 -1621583500861 Marionette INFO Stopped listening on port 42667 -1621583517092 geckodriver INFO Listening on 127.0.0.1:51999 -1621583517098 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletvnvaJ" -1621583519367 Marionette INFO Listening on port 38911 -1621583519405 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 -1621583519874 Marionette INFO Stopped listening on port 38911 -1621583520554 geckodriver INFO Listening on 127.0.0.1:47227 -1621583520558 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile4c46xv" -1621583522900 Marionette INFO Listening on port 44165 -1621583522965 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 -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 -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1621583528769 Marionette INFO Stopped listening on port 44165 -1621583536058 Marionette INFO Stopped listening on port 37073 -1621583622316 geckodriver INFO Listening on 127.0.0.1:35269 -1621583622321 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileH3TBSD" -1621583624522 Marionette INFO Listening on port 34401 -1621583624529 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 -1621583625054 Marionette INFO Stopped listening on port 34401 -1621583625848 geckodriver INFO Listening on 127.0.0.1:60341 -1621583625852 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKclRV6" -1621583628178 Marionette INFO Listening on port 34639 -1621583628263 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 -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//create_dept?DeptId=TESTCREATEDPT, line 52: ReferenceError: $ is not defined -JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function -1621583634282 Marionette INFO Stopped listening on port 34639 -console.log: "Request to connect to TabDescriptor \"undefined\" failed: Error: Connection closed, pending request to server0.conn0.child2/consoleActor2, type startListeners failed\n\nRequest stack:\nrequest@resource://devtools/shared/protocol/Front.js:256:14\ngenerateRequestMethods/