modif test + controle sur la page étudiante
This commit is contained in:
parent
ae6bef0d57
commit
b06207b593
@ -79,9 +79,33 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
self.assertTrue("Enseignants du" in driver.page_source)
|
||||
self.assertTrue(SCODOC_ID in driver.page_source)
|
||||
|
||||
# Test : Création d'une interrogation en tant que chef des études
|
||||
# @eexpected : L'interrogation apparait désormais dans ce module
|
||||
def test_04creation_interrogation(self):
|
||||
descriptionInterrogation = "Interrogation numero 2"
|
||||
driver = self.driver
|
||||
url = self.url
|
||||
driver.get(baseURL)
|
||||
driver.find_element_by_link_text("déconnecter").click()
|
||||
driver.get(baseURL)
|
||||
driver.find_element_by_id("name").send_keys(SCODOC_CHEF)
|
||||
driver.find_element_by_id("password").send_keys(SCODOC_CHEF_PASS)
|
||||
driver.find_element_by_id("submit").click()
|
||||
driver.get(url)
|
||||
driver.find_element_by_link_text("DUT Informatique semestre 4").click()
|
||||
driver.find_element_by_link_text("M4101C").click()
|
||||
time.sleep(1)
|
||||
driver.find_element_by_link_text("Créer nouvelle évaluation").click()
|
||||
time.sleep(1)
|
||||
driver.find_element_by_id("tf_description").send_keys(descriptionInterrogation)
|
||||
driver.find_element_by_id("tf_coefficient").send_keys("2")
|
||||
driver.find_element_by_id("tf_submit").click()
|
||||
time.sleep(1)
|
||||
self.assertTrue(descriptionInterrogation in driver.page_source)
|
||||
|
||||
# Test Vérifie si une interrogation existe sur un module
|
||||
# @expected "Module" est présent dans le "formsemetre"
|
||||
def test_04interro_existante(self):
|
||||
def test_05interro_existante(self):
|
||||
driver = self.driver
|
||||
url = self.url
|
||||
driver.get(url)
|
||||
@ -94,7 +118,7 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
|
||||
# Test Entree des notes pour le premier étudiant inscrit à un module
|
||||
# @expected : "saisir note" est remplacé par "afficher" sur la page d'information de l'interrogation concernée
|
||||
def test_05entree_note(self):
|
||||
def test_06entree_note(self):
|
||||
driver = self.driver
|
||||
url = self.url
|
||||
driver.get(url)
|
||||
@ -110,10 +134,18 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
self.assertTrue(
|
||||
driver.find_element_by_link_text("afficher").text in driver.page_source
|
||||
)
|
||||
driver.get(
|
||||
"https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/AurelienUS/Scolarite/search_etud_in_dept"
|
||||
)
|
||||
element = driver.find_element_by_name("expnom")
|
||||
element.send_keys("UneAutreEtudiante")
|
||||
element.submit()
|
||||
time.sleep(5)
|
||||
self.assertTrue("12" in driver.find_elements_by_class_name("rcp_moy").text)
|
||||
|
||||
# Test : Ajoute les notes manquante poru les étudiants concernés dans une interrogation
|
||||
# @expected : Tout les étudiants on une note
|
||||
def test_06ajout_note_incomplete(self):
|
||||
def test_07ajout_note_incomplete(self):
|
||||
driver = self.driver
|
||||
url = self.url
|
||||
driver.get(url)
|
||||
@ -130,7 +162,7 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
|
||||
# Test : Suppresion des notes pour tout les étudiants concernés dans une interrogation
|
||||
# @expected : La moyenne ne s'affiche plus, "afficher" disparait de la page d'information de l'interrogation
|
||||
def test_07suppression_note(self):
|
||||
def test_08suppression_note(self):
|
||||
driver = self.driver
|
||||
url = self.url
|
||||
driver.get(url)
|
||||
@ -151,22 +183,35 @@ class PythonOrgSearch(unittest.TestCase):
|
||||
except NoSuchElementException:
|
||||
self.assertTrue(True)
|
||||
|
||||
# Test : Création d'une interrogation en tant qu'enseignant reponsable d'un module
|
||||
# @eexpected : L'interrogation apparait désormais dans ce module
|
||||
def test_08creation_interrogation(self):
|
||||
# Test : SUppression d'une interrogation par le chef des études
|
||||
# @expected : L'interrogation n'apparait plus sur le module, les notes sont supprimées également
|
||||
def test_09suppresion_interrogation(self):
|
||||
descriptionInterrogation = "Interrogation numero 2"
|
||||
driver = self.driver
|
||||
url = self.url
|
||||
driver.get(baseURL)
|
||||
driver.find_element_by_link_text("déconnecter").click()
|
||||
driver.get(baseURL)
|
||||
driver.find_element_by_id("name").send_keys(SCODOC_CHEF)
|
||||
driver.find_element_by_id("password").send_keys(SCODOC_CHEF_PASS)
|
||||
driver.find_element_by_id("submit").click()
|
||||
driver.get(url)
|
||||
driver.find_element_by_link_text("DUT Informatique semestre 4").click()
|
||||
driver.find_element_by_link_text("M4101C").click()
|
||||
time.sleep(1)
|
||||
driver.find_element_by_link_text("Créer nouvelle évaluation").click()
|
||||
id = driver.find_element_by_link_text(descriptionInterrogation).text
|
||||
urlDelete = (
|
||||
baseURL
|
||||
+ nomDPT
|
||||
+ "/Scolarite/Notes/evaluation_delete?evaluation_id=%s" % id
|
||||
)
|
||||
driver.get(urlDelete)
|
||||
driver.get(url)
|
||||
self.assertFalse(descriptionInterrogation in driver.page_source)
|
||||
|
||||
# Test : Suppression d'un enseignant responsable d'un module
|
||||
# @expected : L'enseignant n'apparait plus comme responsable dans ce module
|
||||
def test_15suppression_enseignant_sur_module(self):
|
||||
def test_10suppression_enseignant_sur_module(self):
|
||||
driver = self.driver
|
||||
url = self.url
|
||||
self.driver.get(
|
||||
|
336
geckodriver.log
336
geckodriver.log
@ -5513,3 +5513,339 @@ JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scod
|
||||
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user