création utilisateurs chef et enseignant
This commit is contained in:
parent
5299945287
commit
7d52d21bc1
5
.env
5
.env
@ -2,9 +2,10 @@ BASE_URL = "https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/"
|
|||||||
NOM_DPT = "test01"
|
NOM_DPT = "test01"
|
||||||
SCODOC_ADMIN_ID = "admin"
|
SCODOC_ADMIN_ID = "admin"
|
||||||
SCODOC_ADMIN_PASS = "root_pass_42"
|
SCODOC_ADMIN_PASS = "root_pass_42"
|
||||||
SCODOC_ENS_ID = "enseignantUS"
|
SCODOC_ENS_ID = "enseignant"
|
||||||
SCODOC_ENS_PASS = "enseignant@"
|
SCODOC_ENS_PASS = "enseignant@"
|
||||||
SCODOC_CHEF_ID = "chefdesetudesUS"
|
SCODOC_CHEF_ID = "chefdesetudes"
|
||||||
SCODOC_CHEF_PASS = "passwordUS42"
|
SCODOC_CHEF_PASS = "passwordUS42"
|
||||||
LINK_SCODOC_SERVER = "root@scodoc-dev-iutinfo.univ-lille.fr"
|
LINK_SCODOC_SERVER = "root@scodoc-dev-iutinfo.univ-lille.fr"
|
||||||
BASE_NOT_SECURED_URL = "scodoc-dev-iutinfo.univ-lille.fr/"
|
BASE_NOT_SECURED_URL = "scodoc-dev-iutinfo.univ-lille.fr/"
|
||||||
|
NAVIGATEUR = "firefox"
|
10
.envmodel
Normal file
10
.envmodel
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
BASE_URL = "https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/"
|
||||||
|
NOM_DPT = "test01"
|
||||||
|
SCODOC_ADMIN_ID = "admin_id"
|
||||||
|
SCODOC_ADMIN_PASS = "admin_password"
|
||||||
|
SCODOC_ENS_ID = "enseignant_id"
|
||||||
|
SCODOC_ENS_PASS = "enseignant_password"
|
||||||
|
SCODOC_CHEF_ID = "chef_id"
|
||||||
|
SCODOC_CHEF_PASS = "password"
|
||||||
|
LINK_SCODOC_SERVER = "root@ssh_server_scodoc"
|
||||||
|
BASE_NOT_SECURED_URL = "scodoc-dev-iutinfo.univ-lille.fr/"
|
@ -9,6 +9,7 @@ from setting import (
|
|||||||
NOM_DPT,
|
NOM_DPT,
|
||||||
LINK_SCODOC_SERVER,
|
LINK_SCODOC_SERVER,
|
||||||
BASE_NOT_SECURED_URL,
|
BASE_NOT_SECURED_URL,
|
||||||
|
NAVIGATEUR,
|
||||||
)
|
)
|
||||||
from selenium import webdriver
|
from selenium import webdriver
|
||||||
from selenium.webdriver.common.keys import Keys
|
from selenium.webdriver.common.keys import Keys
|
||||||
@ -22,7 +23,10 @@ class PythonOrgSearch(unittest.TestCase):
|
|||||||
process.wait()
|
process.wait()
|
||||||
# Permet de se connecter et se remettre sur la page d'accueil avant chaque test
|
# Permet de se connecter et se remettre sur la page d'accueil avant chaque test
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.driver = webdriver.Firefox()
|
if NAVIGATEUR == "firefox":
|
||||||
|
self.driver = webdriver.Firefox()
|
||||||
|
else:
|
||||||
|
self.driver = webdriver.Chrome()
|
||||||
self.driver.get(
|
self.driver.get(
|
||||||
"https://"
|
"https://"
|
||||||
+ SCODOC_ADMIN_ID
|
+ SCODOC_ADMIN_ID
|
||||||
|
@ -9,6 +9,7 @@ from setting import (
|
|||||||
NOM_DPT,
|
NOM_DPT,
|
||||||
LINK_SCODOC_SERVER,
|
LINK_SCODOC_SERVER,
|
||||||
BASE_NOT_SECURED_URL,
|
BASE_NOT_SECURED_URL,
|
||||||
|
NAVIGATEUR,
|
||||||
)
|
)
|
||||||
from selenium import webdriver
|
from selenium import webdriver
|
||||||
from selenium.webdriver.support import expected_conditions as EC
|
from selenium.webdriver.support import expected_conditions as EC
|
||||||
@ -29,7 +30,10 @@ class PythonOrgSearch(unittest.TestCase):
|
|||||||
process.wait()
|
process.wait()
|
||||||
# Permet de se connecter et se remettre sur la page d'accueil avant chaque test
|
# Permet de se connecter et se remettre sur la page d'accueil avant chaque test
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.driver = webdriver.Firefox()
|
if NAVIGATEUR == "firefox":
|
||||||
|
self.driver = webdriver.Firefox()
|
||||||
|
else:
|
||||||
|
self.driver = webdriver.Chrome()
|
||||||
self.wait = WebDriverWait(self.driver, 10)
|
self.wait = WebDriverWait(self.driver, 10)
|
||||||
self.driver.get(
|
self.driver.get(
|
||||||
"https://"
|
"https://"
|
||||||
|
@ -8,6 +8,7 @@ from setting import (
|
|||||||
NOM_DPT,
|
NOM_DPT,
|
||||||
LINK_SCODOC_SERVER,
|
LINK_SCODOC_SERVER,
|
||||||
BASE_NOT_SECURED_URL,
|
BASE_NOT_SECURED_URL,
|
||||||
|
NAVIGATEUR,
|
||||||
)
|
)
|
||||||
import urllib.parse as urlparse
|
import urllib.parse as urlparse
|
||||||
from urllib.parse import parse_qs
|
from urllib.parse import parse_qs
|
||||||
@ -19,8 +20,8 @@ from selenium.webdriver.support.ui import Select, WebDriverWait
|
|||||||
from selenium.webdriver.support.select import Select
|
from selenium.webdriver.support.select import Select
|
||||||
|
|
||||||
URL = BASE_URL + NOM_DPT + "/Scolarite"
|
URL = BASE_URL + NOM_DPT + "/Scolarite"
|
||||||
nomEtu = "UnAutreEtudiant"
|
nomEtu = "Semestre11"
|
||||||
prenomEtu = "Normal"
|
prenomEtu = "Etudiant1"
|
||||||
nip = "11122234"
|
nip = "11122234"
|
||||||
domicile = "50 rue de la marmite"
|
domicile = "50 rue de la marmite"
|
||||||
codepostaldomicile = "59000"
|
codepostaldomicile = "59000"
|
||||||
@ -41,7 +42,10 @@ class PythonOrgSearch(unittest.TestCase):
|
|||||||
process.wait()
|
process.wait()
|
||||||
# Permet de se connecter et se remettre sur la page d'accueil avant chaque test
|
# Permet de se connecter et se remettre sur la page d'accueil avant chaque test
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.driver = webdriver.Firefox()
|
if NAVIGATEUR == "firefox":
|
||||||
|
self.driver = webdriver.Firefox()
|
||||||
|
else:
|
||||||
|
self.driver = webdriver.Chrome()
|
||||||
self.wait = WebDriverWait(self.driver, 10)
|
self.wait = WebDriverWait(self.driver, 10)
|
||||||
self.driver.get(
|
self.driver.get(
|
||||||
"https://"
|
"https://"
|
||||||
|
@ -9,6 +9,7 @@ from setting import (
|
|||||||
NOM_DPT,
|
NOM_DPT,
|
||||||
LINK_SCODOC_SERVER,
|
LINK_SCODOC_SERVER,
|
||||||
BASE_NOT_SECURED_URL,
|
BASE_NOT_SECURED_URL,
|
||||||
|
NAVIGATEUR,
|
||||||
)
|
)
|
||||||
from urllib.parse import parse_qs
|
from urllib.parse import parse_qs
|
||||||
from selenium import webdriver
|
from selenium import webdriver
|
||||||
@ -18,8 +19,10 @@ from selenium.webdriver.support.ui import Select, WebDriverWait
|
|||||||
from selenium.webdriver.support.select import Select
|
from selenium.webdriver.support.select import Select
|
||||||
|
|
||||||
URL = BASE_URL + NOM_DPT + "/Scolarite"
|
URL = BASE_URL + NOM_DPT + "/Scolarite"
|
||||||
NOM_ETU = "Semestre1"
|
NOM_ETU = "Semestre11"
|
||||||
PRENOM_ETU = "EtudiantNumero1"
|
PRENOM_ETU = "EtudiantNumero1"
|
||||||
|
dateDebutAbsenceNonJustifiee = "31/05/2021"
|
||||||
|
dateDebutAbsenceJustifiee = "30/05/2021"
|
||||||
|
|
||||||
|
|
||||||
class PythonOrgSearch(unittest.TestCase):
|
class PythonOrgSearch(unittest.TestCase):
|
||||||
@ -36,7 +39,10 @@ class PythonOrgSearch(unittest.TestCase):
|
|||||||
process.wait()
|
process.wait()
|
||||||
# Permet de se connecter et se remettre sur la page d'accueil avant chaque test
|
# Permet de se connecter et se remettre sur la page d'accueil avant chaque test
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.driver = webdriver.Firefox()
|
if NAVIGATEUR == "firefox":
|
||||||
|
self.driver = webdriver.Firefox()
|
||||||
|
else:
|
||||||
|
self.driver = webdriver.Chrome()
|
||||||
self.wait = WebDriverWait(self.driver, 10)
|
self.wait = WebDriverWait(self.driver, 10)
|
||||||
self.driver.get(
|
self.driver.get(
|
||||||
"https://"
|
"https://"
|
||||||
@ -58,17 +64,15 @@ class PythonOrgSearch(unittest.TestCase):
|
|||||||
element.send_keys(NOM_ETU)
|
element.send_keys(NOM_ETU)
|
||||||
element.submit()
|
element.submit()
|
||||||
self.wait.until(EC.url_changes(URL))
|
self.wait.until(EC.url_changes(URL))
|
||||||
driver.find_element_by_xpath("//a[contains(text(),'Etudiantnumero1')]").click()
|
|
||||||
time.sleep(5)
|
|
||||||
URL = driver.current_url
|
URL = driver.current_url
|
||||||
self.assertTrue(NOM_ETU in driver.page_source)
|
self.assertTrue(NOM_ETU.upper() in driver.page_source)
|
||||||
|
|
||||||
# Test : creer une absence non justifiée
|
# Test : creer une absence non justifiée
|
||||||
# @expected : La fiche étudiante est incrémentée avec le nombre d'absence injustifiée correspondant
|
# @expected : La fiche étudiante est incrémentée avec le nombre d'absence injustifiée correspondant
|
||||||
def test_020_ajout_absence_non_justifiee(self):
|
def test_020_ajout_absence_non_justifiee(self):
|
||||||
driver = self.driver
|
driver = self.driver
|
||||||
global URL
|
global URL
|
||||||
driver.find_element_by_link_text("Ajouter").click()
|
driver.find_element_by_id("ajout_Absence").click()
|
||||||
driver.find_element_by_name("datedebut").send_keys(dateDebutAbsenceNonJustifiee)
|
driver.find_element_by_name("datedebut").send_keys(dateDebutAbsenceNonJustifiee)
|
||||||
driver.find_element_by_id("butsubmit").submit()
|
driver.find_element_by_id("butsubmit").submit()
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
@ -87,14 +91,14 @@ class PythonOrgSearch(unittest.TestCase):
|
|||||||
|
|
||||||
# Test pour ajouter deux absences justifiées
|
# Test pour ajouter deux absences justifiées
|
||||||
# @expected : La fiche d'information de l'étudiant concerné à son compteur d'absence augmenté de 2
|
# @expected : La fiche d'information de l'étudiant concerné à son compteur d'absence augmenté de 2
|
||||||
def test_ajout_absence_justifiee(self):
|
def test_021_ajout_absence_justifiee(self):
|
||||||
driver = self.driver
|
driver = self.driver
|
||||||
global URL
|
global URL
|
||||||
driver.find_element_by_link_text("Ajouter").click()
|
driver.find_element_by_id("ajout_Absence").click()
|
||||||
driver.find_element_by_name("datedebut").send_keys(dateDebutAbsenceJustifiee)
|
driver.find_element_by_name("datedebut").send_keys(dateDebutAbsenceJustifiee)
|
||||||
driver.find_element_by_name("estjust").click()
|
driver.find_element_by_name("estjust").click()
|
||||||
driver.find_element_by_id("butsubmit").submit()
|
driver.find_element_by_id("butsubmit").submit()
|
||||||
time.sleep(1)
|
self.wait.until(EC.url_changes(URL))
|
||||||
self.assertTrue("Ajout de 2 absences <b>justifiées</b>" in driver.page_source)
|
self.assertTrue("Ajout de 2 absences <b>justifiées</b>" in driver.page_source)
|
||||||
driver = self.driver
|
driver = self.driver
|
||||||
driver.find_element_by_link_text("Liste").click()
|
driver.find_element_by_link_text("Liste").click()
|
||||||
@ -107,13 +111,14 @@ class PythonOrgSearch(unittest.TestCase):
|
|||||||
|
|
||||||
# Test Justification d'une absence non justifiée
|
# Test Justification d'une absence non justifiée
|
||||||
# @expected : Le champs des absences non justifiées diminue et celui des justifiés augmente du nombre d'absence
|
# @expected : Le champs des absences non justifiées diminue et celui des justifiés augmente du nombre d'absence
|
||||||
def test_ajout_justification(self):
|
def test_022_ajout_justification(self):
|
||||||
driver = self.driver
|
driver = self.driver
|
||||||
global URL
|
global URL
|
||||||
driver.find_element_by_link_text("Justifier").click()
|
driver.find_element_by_id("justifier_Absence").click()
|
||||||
driver.find_element_by_name("datedebut").send_keys(dateDebutAbsenceJustifiee)
|
driver.find_element_by_name("datedebut").send_keys(dateDebutAbsenceJustifiee)
|
||||||
driver.find_element_by_name("description").send_keys("Un test selenium")
|
driver.find_element_by_name("description").send_keys("Un test selenium")
|
||||||
driver.find_element_by_xpath("//input[@value='Envoyer']").click()
|
driver.find_element_by_xpath("//input[@value='Envoyer']").click()
|
||||||
|
self.wait.until(EC.url_changes(URL))
|
||||||
self.assertTrue("Ajout de 2 <b>justifications</b>" in driver.page_source)
|
self.assertTrue("Ajout de 2 <b>justifications</b>" in driver.page_source)
|
||||||
driver = self.driver
|
driver = self.driver
|
||||||
driver.find_element_by_link_text("Liste").click()
|
driver.find_element_by_link_text("Liste").click()
|
||||||
@ -128,19 +133,19 @@ class PythonOrgSearch(unittest.TestCase):
|
|||||||
|
|
||||||
# Test Suppression des absences pour un élève
|
# Test Suppression des absences pour un élève
|
||||||
# @expected : Les compteurs d'absences sont remplacés par "Pas d'absences"
|
# @expected : Les compteurs d'absences sont remplacés par "Pas d'absences"
|
||||||
def test_supprimer_absence(self):
|
def test_024_supprimer_absence(self):
|
||||||
driver = self.driver
|
driver = self.driver
|
||||||
global URL
|
global URL
|
||||||
driver.find_element_by_link_text("Supprimer").click()
|
driver.find_element_by_id("supprimer_Absence").click()
|
||||||
driver.find_element_by_name("datedebut").send_keys(dateDebutAbsenceJustifiee)
|
driver.find_element_by_name("datedebut").send_keys(dateDebutAbsenceJustifiee)
|
||||||
driver.find_element_by_xpath("//input[@value='Supprimer les absences']").click()
|
driver.find_element_by_xpath("//input[@value='Supprimer les absences']").click()
|
||||||
|
self.wait.until(EC.url_changes(URL))
|
||||||
self.assertTrue("Annulation sur 2 demi-journées " in driver.page_source)
|
self.assertTrue("Annulation sur 2 demi-journées " in driver.page_source)
|
||||||
driver = self.driver
|
driver.find_element_by_id("supprimer_Absence ").click()
|
||||||
driver.find_element_by_link_text("Supprimer").click()
|
|
||||||
driver.find_element_by_name("datedebut").send_keys(dateDebutAbsenceNonJustifiee)
|
driver.find_element_by_name("datedebut").send_keys(dateDebutAbsenceNonJustifiee)
|
||||||
driver.find_element_by_xpath("//input[@value='Supprimer les absences']").click()
|
driver.find_element_by_xpath("//input[@value='Supprimer les absences']").click()
|
||||||
driver = self.driver
|
self.wait.until(EC.url_changes(URL))
|
||||||
driver.find_element_by_link_text("Liste").click()
|
driver.find_element_by_id("afficher_Liste_Absence").click()
|
||||||
self.assertTrue("Pas d'absences justifiées" in driver.page_source)
|
self.assertTrue("Pas d'absences justifiées" in driver.page_source)
|
||||||
self.assertTrue("Pas d'absences non justifiées" in driver.page_source)
|
self.assertTrue("Pas d'absences non justifiées" in driver.page_source)
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import unittest
|
import unittest
|
||||||
import time
|
import time
|
||||||
|
import subprocess
|
||||||
import urllib.parse as urlparse
|
import urllib.parse as urlparse
|
||||||
from setting import (
|
from setting import (
|
||||||
SCODOC_ADMIN_ID,
|
SCODOC_ADMIN_ID,
|
||||||
@ -10,6 +11,9 @@ from setting import (
|
|||||||
SCODOC_ENS_PASS,
|
SCODOC_ENS_PASS,
|
||||||
SCODOC_CHEF_ID,
|
SCODOC_CHEF_ID,
|
||||||
SCODOC_CHEF_PASS,
|
SCODOC_CHEF_PASS,
|
||||||
|
NAVIGATEUR,
|
||||||
|
LINK_SCODOC_SERVER,
|
||||||
|
BASE_NOT_SECURED_URL,
|
||||||
)
|
)
|
||||||
from urllib.parse import parse_qs
|
from urllib.parse import parse_qs
|
||||||
from selenium import webdriver
|
from selenium import webdriver
|
||||||
@ -19,17 +23,23 @@ from selenium.webdriver.support import expected_conditions as EC
|
|||||||
from selenium.webdriver.support.ui import Select, WebDriverWait
|
from selenium.webdriver.support.ui import Select, WebDriverWait
|
||||||
from selenium.webdriver.support.select import Select
|
from selenium.webdriver.support.select import Select
|
||||||
|
|
||||||
urlMatiere = ""
|
URL_MATIERE = ""
|
||||||
|
|
||||||
|
|
||||||
# Prérequis
|
# Prérequis
|
||||||
class PythonOrgSearch(unittest.TestCase):
|
class PythonOrgSearch(unittest.TestCase):
|
||||||
# Permet de se connecter et se remettre sur la page d'accueil avant chaque test
|
# Permet de se connecter et se remettre sur la page d'accueil avant chaque test
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.driver = webdriver.Firefox()
|
|
||||||
|
if NAVIGATEUR == "firefox":
|
||||||
|
self.driver = webdriver.Firefox()
|
||||||
|
else:
|
||||||
|
self.driver = webdriver.Chrome()
|
||||||
self.url = BASE_URL + NOM_DPT + "/Scolarite"
|
self.url = BASE_URL + NOM_DPT + "/Scolarite"
|
||||||
self.wait = WebDriverWait(self.driver, 10)
|
self.wait = WebDriverWait(self.driver, 10)
|
||||||
self.driver.get(BASE_URL)
|
self.driver.get(BASE_URL)
|
||||||
|
self.driver.find_element_by_id("utilisateur_Vue").click()
|
||||||
self.driver.find_element_by_id("name").send_keys(SCODOC_ENS_ID)
|
self.driver.find_element_by_id("name").send_keys(SCODOC_ENS_ID)
|
||||||
self.driver.find_element_by_id("password").send_keys(SCODOC_ENS_PASS)
|
self.driver.find_element_by_id("password").send_keys(SCODOC_ENS_PASS)
|
||||||
self.driver.find_element_by_id("submit").click()
|
self.driver.find_element_by_id("submit").click()
|
||||||
@ -256,4 +266,32 @@ class PythonOrgSearch(unittest.TestCase):
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
if NAVIGATEUR == "firefox":
|
||||||
|
driver = webdriver.Firefox()
|
||||||
|
else:
|
||||||
|
driver = webdriver.Chrome()
|
||||||
|
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()
|
||||||
|
driver.get(
|
||||||
|
"https://"
|
||||||
|
+ SCODOC_ADMIN_ID
|
||||||
|
+ ":"
|
||||||
|
+ SCODOC_ADMIN_PASS
|
||||||
|
+ "@"
|
||||||
|
+ BASE_NOT_SECURED_URL
|
||||||
|
+ "force_admin_authentication"
|
||||||
|
)
|
||||||
|
driver.find_element_by_id("utilisateur_Vue").click()
|
||||||
|
if(SCODOC_CHEF_ID not in driver.page_source):
|
||||||
|
|
||||||
|
|
||||||
unittest.main()
|
unittest.main()
|
Binary file not shown.
684
geckodriver.log
684
geckodriver.log
@ -393,3 +393,687 @@ JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scod
|
|||||||
1622207343849 Marionette WARN TLS certificate errors will be ignored for this session
|
1622207343849 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
1622207346967 Marionette INFO Stopped listening on port 44837
|
1622207346967 Marionette INFO Stopped listening on port 44837
|
||||||
|
1622408510275 geckodriver INFO Listening on 127.0.0.1:44181
|
||||||
|
1622408511255 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZPQVz0"
|
||||||
|
1622408517953 Marionette INFO Listening on port 36777
|
||||||
|
1622408518062 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622408522071 Marionette INFO Stopped listening on port 36777
|
||||||
|
1622408527994 geckodriver INFO Listening on 127.0.0.1:35195
|
||||||
|
1622408528999 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilesS5ml3"
|
||||||
|
1622408532201 Marionette INFO Listening on port 34441
|
||||||
|
1622408532256 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622408536745 Marionette INFO Stopped listening on port 34441
|
||||||
|
1622408541583 geckodriver INFO Listening on 127.0.0.1:46655
|
||||||
|
1622408542587 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehJMKT3"
|
||||||
|
1622408545726 Marionette INFO Listening on port 39247
|
||||||
|
1622408545796 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622408548442 Marionette INFO Stopped listening on port 39247
|
||||||
|
1622408552314 geckodriver INFO Listening on 127.0.0.1:48787
|
||||||
|
1622408553318 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileKMYKJZ"
|
||||||
|
1622408556561 Marionette INFO Listening on port 41989
|
||||||
|
1622408556627 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622408560211 Marionette INFO Stopped listening on port 41989
|
||||||
|
1622408568104 geckodriver INFO Listening on 127.0.0.1:46003
|
||||||
|
1622408569107 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeSe1hf"
|
||||||
|
1622408575871 Marionette INFO Listening on port 34937
|
||||||
|
1622408575952 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622408585618 Marionette INFO Stopped listening on port 34937
|
||||||
|
1622460854224 geckodriver INFO Listening on 127.0.0.1:37611
|
||||||
|
1622460855217 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileOkUUjX"
|
||||||
|
1622460860519 Marionette INFO Listening on port 38707
|
||||||
|
1622460860574 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622460865943 Marionette INFO Stopped listening on port 38707
|
||||||
|
1622460871771 geckodriver INFO Listening on 127.0.0.1:33083
|
||||||
|
1622460872775 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledeWJfX"
|
||||||
|
1622460877671 Marionette INFO Listening on port 42301
|
||||||
|
1622460877771 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622460881497 Marionette INFO Stopped listening on port 42301
|
||||||
|
1622460885114 geckodriver INFO Listening on 127.0.0.1:54629
|
||||||
|
1622460886118 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile6A36xQ"
|
||||||
|
1622460890615 Marionette INFO Listening on port 36401
|
||||||
|
1622460890664 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622460897408 Marionette INFO Stopped listening on port 36401
|
||||||
|
1622460902098 geckodriver INFO Listening on 127.0.0.1:52317
|
||||||
|
1622460903102 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiBNBBT"
|
||||||
|
1622460906463 Marionette INFO Listening on port 42003
|
||||||
|
1622460906490 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622460911332 Marionette INFO Stopped listening on port 42003
|
||||||
|
1622460915160 geckodriver INFO Listening on 127.0.0.1:46977
|
||||||
|
1622460916163 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilePYfXPx"
|
||||||
|
1622460920558 Marionette INFO Listening on port 39447
|
||||||
|
1622460920575 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622460927024 Marionette INFO Stopped listening on port 39447
|
||||||
|
1622463996478 geckodriver INFO Listening on 127.0.0.1:57431
|
||||||
|
1622463997481 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilelWKMbA"
|
||||||
|
1622464002364 Marionette INFO Listening on port 36771
|
||||||
|
1622464002404 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622464005378 Marionette INFO Stopped listening on port 36771
|
||||||
|
1622464009409 geckodriver INFO Listening on 127.0.0.1:50361
|
||||||
|
1622464010414 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYo9SiO"
|
||||||
|
1622464014737 Marionette INFO Listening on port 46507
|
||||||
|
1622464014808 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622464016603 Marionette INFO Stopped listening on port 46507
|
||||||
|
1622464021390 geckodriver INFO Listening on 127.0.0.1:54243
|
||||||
|
1622464022393 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3gYFJm"
|
||||||
|
1622464027940 Marionette INFO Listening on port 38569
|
||||||
|
1622464028047 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622464030113 Marionette INFO Stopped listening on port 38569
|
||||||
|
1622464039697 geckodriver INFO Listening on 127.0.0.1:56045
|
||||||
|
1622464040702 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilemO4BOa"
|
||||||
|
1622464045359 Marionette INFO Listening on port 37569
|
||||||
|
1622464045396 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622464047878 Marionette INFO Stopped listening on port 37569
|
||||||
|
1622464049803 geckodriver INFO Listening on 127.0.0.1:44557
|
||||||
|
1622464050820 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileR0J9Ry"
|
||||||
|
1622464054687 Marionette INFO Listening on port 36691
|
||||||
|
1622464054735 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622464056703 Marionette INFO Stopped listening on port 36691
|
||||||
|
1622464137870 geckodriver INFO Listening on 127.0.0.1:42601
|
||||||
|
1622464138875 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiybuO2"
|
||||||
|
1622464142164 Marionette INFO Listening on port 34137
|
||||||
|
1622464142252 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622464145103 Marionette INFO Stopped listening on port 34137
|
||||||
|
1622464151033 geckodriver INFO Listening on 127.0.0.1:53911
|
||||||
|
1622464152037 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiley2v18O"
|
||||||
|
1622464155402 Marionette INFO Listening on port 41495
|
||||||
|
1622464155442 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622464157390 Marionette INFO Stopped listening on port 41495
|
||||||
|
1622464161295 geckodriver INFO Listening on 127.0.0.1:49047
|
||||||
|
1622464162299 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXD4Yog"
|
||||||
|
1622464165739 Marionette INFO Listening on port 34109
|
||||||
|
1622464165809 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622464167619 Marionette INFO Stopped listening on port 34109
|
||||||
|
1622464173464 geckodriver INFO Listening on 127.0.0.1:40723
|
||||||
|
1622464174468 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJyYKHt"
|
||||||
|
1622464177929 Marionette INFO Listening on port 45681
|
||||||
|
1622464177970 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622464180528 Marionette INFO Stopped listening on port 45681
|
||||||
|
1622464185470 geckodriver INFO Listening on 127.0.0.1:57539
|
||||||
|
1622464186468 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileedibml"
|
||||||
|
1622464189854 Marionette INFO Listening on port 35419
|
||||||
|
1622464189955 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622464192186 Marionette INFO Stopped listening on port 35419
|
||||||
|
1622466243741 geckodriver INFO Listening on 127.0.0.1:47959
|
||||||
|
1622466244745 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBtzzcM"
|
||||||
|
1622466248049 Marionette INFO Listening on port 39431
|
||||||
|
1622466248063 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622466251649 Marionette INFO Stopped listening on port 39431
|
||||||
|
1622466260471 geckodriver INFO Listening on 127.0.0.1:47963
|
||||||
|
1622466261475 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiledmeCQx"
|
||||||
|
1622466264758 Marionette INFO Listening on port 33179
|
||||||
|
1622466264848 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622466266703 Marionette INFO Stopped listening on port 33179
|
||||||
|
1622466276555 geckodriver INFO Listening on 127.0.0.1:34487
|
||||||
|
1622466277559 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilew9IANT"
|
||||||
|
1622466280870 Marionette INFO Listening on port 39603
|
||||||
|
1622466280943 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622466283000 Marionette INFO Stopped listening on port 39603
|
||||||
|
1622466289870 geckodriver INFO Listening on 127.0.0.1:48715
|
||||||
|
1622466290875 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileBjL4tS"
|
||||||
|
1622466293997 Marionette INFO Listening on port 42939
|
||||||
|
1622466294055 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622466296449 Marionette INFO Stopped listening on port 42939
|
||||||
|
1622466301188 geckodriver INFO Listening on 127.0.0.1:42201
|
||||||
|
1622466302191 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileT8Xlg6"
|
||||||
|
1622466305368 Marionette INFO Listening on port 44247
|
||||||
|
1622466305459 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622466307414 Marionette INFO Stopped listening on port 44247
|
||||||
|
1622466393298 geckodriver INFO Listening on 127.0.0.1:44501
|
||||||
|
1622466394302 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileg7Dgid"
|
||||||
|
1622466399025 Marionette INFO Listening on port 40691
|
||||||
|
1622466399124 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622466402370 Marionette INFO Stopped listening on port 40691
|
||||||
|
1622466411069 geckodriver INFO Listening on 127.0.0.1:54865
|
||||||
|
1622466412072 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile0KOD5J"
|
||||||
|
1622466415916 Marionette INFO Listening on port 38905
|
||||||
|
1622466415953 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622466417919 Marionette INFO Stopped listening on port 38905
|
||||||
|
1622466427742 geckodriver INFO Listening on 127.0.0.1:52553
|
||||||
|
1622466428746 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileiKM0kf"
|
||||||
|
1622466433783 Marionette INFO Listening on port 33561
|
||||||
|
1622466433850 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622466435798 Marionette INFO Stopped listening on port 33561
|
||||||
|
1622466440657 geckodriver INFO Listening on 127.0.0.1:52023
|
||||||
|
1622466441661 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMyX0IE"
|
||||||
|
1622466445300 Marionette INFO Listening on port 44493
|
||||||
|
1622466445357 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622466447858 Marionette INFO Stopped listening on port 44493
|
||||||
|
1622466451623 geckodriver INFO Listening on 127.0.0.1:45385
|
||||||
|
1622466452624 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezg4wr3"
|
||||||
|
1622466456327 Marionette INFO Listening on port 35921
|
||||||
|
1622466456417 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622466458523 Marionette INFO Stopped listening on port 35921
|
||||||
|
1622467892234 geckodriver INFO Listening on 127.0.0.1:42659
|
||||||
|
1622467893238 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenH342c"
|
||||||
|
1622467896504 Marionette INFO Listening on port 35023
|
||||||
|
1622467896510 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622467903863 Marionette INFO Stopped listening on port 35023
|
||||||
|
1622467913281 geckodriver INFO Listening on 127.0.0.1:43627
|
||||||
|
1622467914286 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileDGRJiU"
|
||||||
|
1622467920616 Marionette INFO Listening on port 45319
|
||||||
|
1622467920716 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622467923537 Marionette INFO Stopped listening on port 45319
|
||||||
|
1622467928548 geckodriver INFO Listening on 127.0.0.1:45861
|
||||||
|
1622467929557 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezO1q56"
|
||||||
|
1622467936329 Marionette INFO Listening on port 35377
|
||||||
|
1622467936383 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622467939211 Marionette INFO Stopped listening on port 35377
|
||||||
|
1622467946409 geckodriver INFO Listening on 127.0.0.1:55453
|
||||||
|
1622467947424 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileK4TljV"
|
||||||
|
1622467953654 Marionette INFO Listening on port 33233
|
||||||
|
1622467953760 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622467957273 Marionette INFO Stopped listening on port 33233
|
||||||
|
1622467963243 geckodriver INFO Listening on 127.0.0.1:50995
|
||||||
|
1622467964246 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilee0ieak"
|
||||||
|
1622467967665 Marionette INFO Listening on port 35811
|
||||||
|
1622467967744 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622467969973 Marionette INFO Stopped listening on port 35811
|
||||||
|
1622468153204 geckodriver INFO Listening on 127.0.0.1:40877
|
||||||
|
1622468154207 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileZ7czGt"
|
||||||
|
1622468157554 Marionette INFO Listening on port 35135
|
||||||
|
1622468157604 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468165111 Marionette INFO Stopped listening on port 35135
|
||||||
|
1622468168818 geckodriver INFO Listening on 127.0.0.1:54599
|
||||||
|
1622468169823 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaUggnW"
|
||||||
|
1622468172934 Marionette INFO Listening on port 39711
|
||||||
|
1622468172987 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468175246 Marionette INFO Stopped listening on port 39711
|
||||||
|
1622468185012 geckodriver INFO Listening on 127.0.0.1:44341
|
||||||
|
1622468186016 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileHDsqit"
|
||||||
|
1622468190809 Marionette INFO Listening on port 38231
|
||||||
|
1622468190875 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468193830 Marionette INFO Stopped listening on port 38231
|
||||||
|
1622468199588 geckodriver INFO Listening on 127.0.0.1:57829
|
||||||
|
1622468200591 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilezZH818"
|
||||||
|
1622468204602 Marionette INFO Listening on port 39555
|
||||||
|
1622468204659 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468208118 Marionette INFO Stopped listening on port 39555
|
||||||
|
1622468212943 geckodriver INFO Listening on 127.0.0.1:41973
|
||||||
|
1622468213947 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepsYyoY"
|
||||||
|
1622468217325 Marionette INFO Listening on port 37059
|
||||||
|
1622468217411 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468219319 Marionette INFO Stopped listening on port 37059
|
||||||
|
1622468275356 geckodriver INFO Listening on 127.0.0.1:38945
|
||||||
|
1622468276360 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehQZ8zf"
|
||||||
|
1622468279605 Marionette INFO Listening on port 38823
|
||||||
|
1622468279668 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468287116 Marionette INFO Stopped listening on port 38823
|
||||||
|
1622468296905 geckodriver INFO Listening on 127.0.0.1:39777
|
||||||
|
1622468297908 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileSuzdQq"
|
||||||
|
1622468301077 Marionette INFO Listening on port 35341
|
||||||
|
1622468301135 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468305111 Marionette INFO Stopped listening on port 35341
|
||||||
|
1622468312904 geckodriver INFO Listening on 127.0.0.1:36089
|
||||||
|
1622468313907 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilegCjvjw"
|
||||||
|
1622468317165 Marionette INFO Listening on port 33079
|
||||||
|
1622468317176 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468319611 Marionette INFO Stopped listening on port 33079
|
||||||
|
1622468324518 geckodriver INFO Listening on 127.0.0.1:57163
|
||||||
|
1622468325524 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofiletGtxdC"
|
||||||
|
1622468328727 Marionette INFO Listening on port 39375
|
||||||
|
1622468328752 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468331144 Marionette INFO Stopped listening on port 39375
|
||||||
|
1622468334960 geckodriver INFO Listening on 127.0.0.1:34697
|
||||||
|
1622468335964 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3MnmHw"
|
||||||
|
1622468339293 Marionette INFO Listening on port 45189
|
||||||
|
1622468339329 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468341583 Marionette INFO Stopped listening on port 45189
|
||||||
|
1622468507584 geckodriver INFO Listening on 127.0.0.1:47737
|
||||||
|
1622468508588 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekiKsY9"
|
||||||
|
1622468511926 Marionette INFO Listening on port 38249
|
||||||
|
1622468511956 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468519499 Marionette INFO Stopped listening on port 38249
|
||||||
|
1622468524229 geckodriver INFO Listening on 127.0.0.1:54649
|
||||||
|
1622468525233 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7l3w4e"
|
||||||
|
1622468528268 Marionette INFO Listening on port 38747
|
||||||
|
1622468528312 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468532764 Marionette INFO Stopped listening on port 38747
|
||||||
|
1622468540578 geckodriver INFO Listening on 127.0.0.1:43921
|
||||||
|
1622468541582 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileV3Oedz"
|
||||||
|
1622468544603 Marionette INFO Listening on port 34597
|
||||||
|
1622468544645 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468548389 Marionette INFO Stopped listening on port 34597
|
||||||
|
1622468554254 geckodriver INFO Listening on 127.0.0.1:39227
|
||||||
|
1622468555259 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileMSbXN6"
|
||||||
|
1622468558280 Marionette INFO Listening on port 35461
|
||||||
|
1622468558337 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468561153 Marionette INFO Stopped listening on port 35461
|
||||||
|
1622468570915 geckodriver INFO Listening on 127.0.0.1:49871
|
||||||
|
1622468571919 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilez4X5vf"
|
||||||
|
1622468575067 Marionette INFO Listening on port 46367
|
||||||
|
1622468575124 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622468578918 Marionette INFO Stopped listening on port 46367
|
||||||
|
1622549209989 geckodriver INFO Listening on 127.0.0.1:60703
|
||||||
|
1622549210979 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehKSYPX"
|
||||||
|
1622549218554 Marionette INFO Listening on port 39513
|
||||||
|
1622549218655 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622549222712 Marionette INFO Stopped listening on port 39513
|
||||||
|
1622549224159 geckodriver INFO Listening on 127.0.0.1:51347
|
||||||
|
1622549225162 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXTWufv"
|
||||||
|
1622549228910 Marionette INFO Listening on port 43913
|
||||||
|
1622549228922 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622549232456 Marionette INFO Stopped listening on port 43913
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
Exiting due to channel error.
|
||||||
|
1622549250598 geckodriver INFO Listening on 127.0.0.1:43527
|
||||||
|
1622549251602 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileERA2aW"
|
||||||
|
1622549254999 Marionette INFO Listening on port 46693
|
||||||
|
1622549255072 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622549257721 Marionette INFO Stopped listening on port 46693
|
||||||
|
1622549260558 geckodriver INFO Listening on 127.0.0.1:41771
|
||||||
|
1622549261562 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileAgLsWF"
|
||||||
|
1622549265671 Marionette INFO Listening on port 39515
|
||||||
|
1622549265772 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622549267851 Marionette INFO Stopped listening on port 39515
|
||||||
|
Exiting due to channel error.
|
||||||
|
1622552853527 geckodriver INFO Listening on 127.0.0.1:42661
|
||||||
|
1622552854531 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile3zGm6c"
|
||||||
|
1622552858729 Marionette INFO Listening on port 35521
|
||||||
|
1622552858817 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
1622553479605 geckodriver INFO Listening on 127.0.0.1:42425
|
||||||
|
1622553480608 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileRf5bgP"
|
||||||
|
1622553485557 Marionette INFO Listening on port 42409
|
||||||
|
1622553485617 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622553487046 geckodriver INFO Listening on 127.0.0.1:57235
|
||||||
|
1622553487050 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile03fbkd"
|
||||||
|
1622553492303 Marionette INFO Listening on port 34585
|
||||||
|
1622553492345 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622553493530 geckodriver INFO Listening on 127.0.0.1:41101
|
||||||
|
1622553494530 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilevSkm8C"
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
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.
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
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.
|
||||||
|
[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=<unknown IPC msg name>) Channel error: cannot send/recv
|
||||||
|
|
||||||
|
1622553799572 Marionette INFO Stopped listening on port 35521
|
||||||
|
1622556399540 geckodriver INFO Listening on 127.0.0.1:32773
|
||||||
|
1622556400543 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileCvfdF1"
|
||||||
|
1622556405474 Marionette INFO Listening on port 45127
|
||||||
|
1622556405539 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556424964 geckodriver INFO Listening on 127.0.0.1:33791
|
||||||
|
1622556425968 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilecS8RlS"
|
||||||
|
1622556431634 Marionette INFO Listening on port 35371
|
||||||
|
1622556431652 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556453106 geckodriver INFO Listening on 127.0.0.1:52951
|
||||||
|
1622556454107 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilejD4gAR"
|
||||||
|
1622556459875 Marionette INFO Listening on port 45051
|
||||||
|
1622556459975 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556479289 geckodriver INFO Listening on 127.0.0.1:37813
|
||||||
|
1622556480292 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileoGQDXe"
|
||||||
|
1622556486059 Marionette INFO Listening on port 44753
|
||||||
|
1622556486073 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556516555 geckodriver INFO Listening on 127.0.0.1:59933
|
||||||
|
1622556517562 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8K8POC"
|
||||||
|
1622556522266 Marionette INFO Listening on port 34483
|
||||||
|
1622556522293 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556525433 geckodriver INFO Listening on 127.0.0.1:47925
|
||||||
|
1622556526442 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilea8hAja"
|
||||||
|
1622556531642 Marionette INFO Listening on port 40433
|
||||||
|
1622556531724 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
1622556532728 geckodriver INFO Listening on 127.0.0.1:42759
|
||||||
|
1622556533746 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYQVD7J"
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
Exiting due to channel error.
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
Exiting due to channel error.
|
||||||
|
1622556812112 Marionette INFO Stopped listening on port 44753
|
||||||
|
1622556812605 Marionette INFO Stopped listening on port 45051
|
||||||
|
1622556813124 Marionette INFO Stopped listening on port 35371
|
||||||
|
1622556814297 Marionette INFO Stopped listening on port 45127
|
||||||
|
1622556886558 geckodriver INFO Listening on 127.0.0.1:56947
|
||||||
|
1622556887560 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJ3tiBY"
|
||||||
|
1622556891065 Marionette INFO Listening on port 43641
|
||||||
|
1622556891085 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556893588 geckodriver INFO Listening on 127.0.0.1:59045
|
||||||
|
1622556894592 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekFNcfx"
|
||||||
|
1622556898122 Marionette INFO Listening on port 42433
|
||||||
|
1622556898176 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556899525 geckodriver INFO Listening on 127.0.0.1:45987
|
||||||
|
1622556900509 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilerVs0As"
|
||||||
|
1622556903963 Marionette INFO Listening on port 39909
|
||||||
|
1622556904021 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556905167 geckodriver INFO Listening on 127.0.0.1:36555
|
||||||
|
1622556906156 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVAAUZd"
|
||||||
|
1622556909967 Marionette INFO Listening on port 34629
|
||||||
|
1622556910035 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556911266 geckodriver INFO Listening on 127.0.0.1:42517
|
||||||
|
1622556912276 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileYdZPjj"
|
||||||
|
1622556915318 Marionette INFO Stopped listening on port 34629
|
||||||
|
1622556915681 Marionette INFO Stopped listening on port 39909
|
||||||
|
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.warn: services.settings: main/cfr sync interrupted by shutdown
|
||||||
|
console.error: Region.jsm: "Failed to fetch region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
|
||||||
|
1622556918311 geckodriver INFO Listening on 127.0.0.1:43841
|
||||||
|
1622556919306 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile9186dX"
|
||||||
|
console.error: Region.jsm: "Failed to fetch region" (new TypeError("NetworkError when attempting to fetch resource.", ""))
|
||||||
|
1622556923816 Marionette INFO Stopped listening on port 42433
|
||||||
|
1622556924641 geckodriver INFO Listening on 127.0.0.1:48575
|
||||||
|
1622556925642 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilehmZBhs"
|
||||||
|
1622556926468 Marionette INFO Stopped listening on port 43641
|
||||||
|
Exiting due to channel error.
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
Exiting due to channel error.
|
||||||
|
1622556945021 geckodriver INFO Listening on 127.0.0.1:56157
|
||||||
|
1622556946025 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileHwE4yE"
|
||||||
|
1622556949336 Marionette INFO Listening on port 38137
|
||||||
|
1622556949430 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556956613 geckodriver INFO Listening on 127.0.0.1:47651
|
||||||
|
1622556957618 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilepK8zdV"
|
||||||
|
1622556961457 Marionette INFO Listening on port 35127
|
||||||
|
1622556961540 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]
|
||||||
|
1622556962438 geckodriver INFO Listening on 127.0.0.1:42345
|
||||||
|
1622556963439 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile7OBeDV"
|
||||||
|
1622556967236 Marionette INFO Stopped listening on port 35127
|
||||||
|
1622556969407 Marionette INFO Listening on port 35815
|
||||||
|
1622556969459 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556970939 geckodriver INFO Listening on 127.0.0.1:43897
|
||||||
|
1622556971939 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileJKk5zM"
|
||||||
|
1622556977995 Marionette INFO Listening on port 39629
|
||||||
|
1622556978085 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556979572 geckodriver INFO Listening on 127.0.0.1:50983
|
||||||
|
1622556980576 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileeBXNO4"
|
||||||
|
1622556984948 Marionette INFO Listening on port 45355
|
||||||
|
1622556984982 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622556986170 geckodriver INFO Listening on 127.0.0.1:35923
|
||||||
|
1622556987170 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileQXicJ5"
|
||||||
|
1622556992472 Marionette INFO Listening on port 36157
|
||||||
|
1622556992506 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
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.
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
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.
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
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.
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
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.
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
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.
|
||||||
|
1622556998932 geckodriver INFO Listening on 127.0.0.1:38923
|
||||||
|
1622556999936 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile5BI3Ii"
|
||||||
|
1622557004102 Marionette INFO Listening on port 45645
|
||||||
|
1622557004144 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622557011448 geckodriver INFO Listening on 127.0.0.1:43489
|
||||||
|
1622557012453 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile8OcRac"
|
||||||
|
1622557016307 Marionette INFO Listening on port 38345
|
||||||
|
1622557016341 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
1622557017693 geckodriver INFO Listening on 127.0.0.1:55509
|
||||||
|
1622557018686 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilenGBzRs"
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
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.
|
||||||
|
[GFX1-]: Receive IPC close with reason=AbnormalShutdown
|
||||||
|
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.
|
||||||
|
1622557060019 geckodriver INFO Listening on 127.0.0.1:52835
|
||||||
|
1622557061026 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileFeBD5E"
|
||||||
|
1622557064232 Marionette INFO Listening on port 37819
|
||||||
|
1622557064245 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_form, line 1: ReferenceError: init_tf_form is not defined
|
||||||
|
1622557083788 Marionette INFO Stopped listening on port 37819
|
||||||
|
1622557275525 geckodriver INFO Listening on 127.0.0.1:48979
|
||||||
|
1622557276535 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileXeKc8e"
|
||||||
|
1622557280033 Marionette INFO Listening on port 35399
|
||||||
|
1622557280108 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_form, line 1: ReferenceError: init_tf_form is not defined
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 6: TypeError: $(...).autocomplete is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_form, line 1: ReferenceError: init_tf_form is not defined
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_form, line 1: ReferenceError: init_tf_form is not defined
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_form, line 1: ReferenceError: init_tf_form is not defined
|
||||||
|
console.error: "Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers."
|
||||||
|
1622557353412 geckodriver INFO Listening on 127.0.0.1:35135
|
||||||
|
1622557354415 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileVbBeU0"
|
||||||
|
1622557357844 Marionette INFO Listening on port 43209
|
||||||
|
1622557357895 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_form, line 1: ReferenceError: init_tf_form is not defined
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_form, line 1: ReferenceError: init_tf_form is not defined
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/libjs/jquery.field.min.js, line 12: ReferenceError: jQuery is not defined
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 4: ReferenceError: $ is not defined
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_form, line 207: ReferenceError: $ is not defined
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_form, line 1: ReferenceError: init_tf_form is not defined
|
||||||
|
console.error: "Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers."
|
||||||
|
SourceActor threw an exception: Error: Failed to fetch https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/libjs/jquery.field.min.js. Code 2153398258.
|
||||||
|
Stack: onResponse@resource://devtools/shared/DevToolsUtils.js:547:16
|
||||||
|
onStopRequest@resource://gre/modules/NetUtil.jsm:128:18
|
||||||
|
Line: 547, column: 16
|
||||||
|
console.error: (new Error("Failed to fetch https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/libjs/jquery.field.min.js. Code 2153398258.", "resource://devtools/shared/DevToolsUtils.js", 547))
|
||||||
|
JavaScript error: resource://devtools/shared/DevToolsUtils.js, line 547: Error: Failed to fetch https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/libjs/jquery.field.min.js. Code 2153398258.
|
||||||
|
1622557427800 geckodriver INFO Listening on 127.0.0.1:49563
|
||||||
|
1622557428804 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofilekMWVB1"
|
||||||
|
1622557431889 Marionette INFO Listening on port 42517
|
||||||
|
1622557431980 Marionette WARN TLS certificate errors will be ignored for this session
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/static/js/scodoc.js, line 97: TypeError: $(...).DataTable is not a function
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_form, line 1: ReferenceError: init_tf_form is not defined
|
||||||
|
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.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: blocklists/addons-bloomfilters importBulk() IndexedDB: importBulk() in blocklists/addons-bloomfilters 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/onecrl importBulk() IndexedDB: importBulk() in security-state/onecrl 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.log: "RemoteSettingsWorker error: QuotaExceededError: IndexedDB: execute() 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 quota limitations.
|
||||||
|
console.error: services.settings:
|
||||||
|
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
|
||||||
|
exe 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.error: services.settings:
|
||||||
|
Message: QuotaExceededError: IndexedDB: main/tippytop importBulk() IndexedDB: importBulk() in main/tippytop 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 saveMetadata() IndexedDB: saveMetadata() 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.
|
||||||
|
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.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 excee1622557912390 Marionette INFO Stopped listening on port 42517
|
||||||
|
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
|
||||||
|
1622557912877 Marionette INFO Stopped listening on port 43209
|
||||||
|
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
|
||||||
|
1622557913525 Marionette INFO Stopped listening on port 35399
|
||||||
|
1622558042501 geckodriver INFO Listening on 127.0.0.1:37091
|
||||||
|
1622558043504 mozrunner::runner INFO Running command: "/usr/bin/firefox" "--marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofileaCqUos"
|
||||||
|
JavaScript error: undefined, line 0: Error: An unexpected error occurred
|
||||||
|
JavaScript error: , line 0: uncaught exception: Object
|
||||||
|
JavaScript error: resource://gre/modules/PlacesUtils.jsm, line 1963: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
|
||||||
|
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."
|
||||||
|
1622558047179 Marionette INFO Listening on port 36895
|
||||||
|
1622558047268 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/PlacesUtils.jsm, line 1963: NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsINavBookmarksService.tagsFolder]
|
||||||
|
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: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_form, line 1: ReferenceError: init_tf_form is not defined
|
||||||
|
console.error: (new Error("Error(s) encountered during statement execution: database or disk is full", "resource://gre/modules/Sqlite.jsm", 887))
|
||||||
|
JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full
|
||||||
|
JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full
|
||||||
|
JavaScript error: resource://gre/modules/Sqlite.jsm, line 887: Error: Error(s) encountered during statement execution: database or disk is full
|
||||||
|
JavaScript error: resource://gre/modules/NewTabUtils.jsm, line 1441: TypeError: conn is undefined
|
||||||
|
JavaScript error: https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/test01/Scolarite/Users/create_user_for1622558105664 Marionette INFO Stopped listening on port 36895
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
I Configuaration
|
||||||
|
|
||||||
|
Environnement de test :
|
||||||
|
Editer le .envmodel pour remplacer les différentes informations qui permettent d'intéragir avec Scodoc (attention au / dans les liens, il y a des exemples)
|
||||||
|
Renommer le fichier en .env
|
||||||
|
|
||||||
|
Les tests sont prévus pour fonctionner avec firefox, le webdriver (geckodriver) est intégré dans le projet pour éviter de devoir l'installer manuellement
|
||||||
|
|
||||||
|
Les tests sont prévus pour fonctionner en python 3 avec unit test
|
@ -15,3 +15,4 @@ SCODOC_CHEF_ID = os.environ.get("SCODOC_CHEF_ID")
|
|||||||
SCODOC_CHEF_PASS = os.environ.get("SCODOC_CHEF_PASS")
|
SCODOC_CHEF_PASS = os.environ.get("SCODOC_CHEF_PASS")
|
||||||
LINK_SCODOC_SERVER = os.environ.get("LINK_SCODOC_SERVER")
|
LINK_SCODOC_SERVER = os.environ.get("LINK_SCODOC_SERVER")
|
||||||
BASE_NOT_SECURED_URL = os.environ.get("BASE_NOT_SECURED_URL")
|
BASE_NOT_SECURED_URL = os.environ.get("BASE_NOT_SECURED_URL")
|
||||||
|
NAVIGATEUR = os.environ.get("NAVIGATEUR")
|
10
setup.py
10
setup.py
@ -1,10 +0,0 @@
|
|||||||
BASE_URL = "https://scodoc-dev-iutinfo.univ-lille.fr/ScoDoc/"
|
|
||||||
NOM_DPT = "test01"
|
|
||||||
SCODOC_ADMIN_ID = "admin"
|
|
||||||
SCODOC_ADMIN_PASS = "root_pass_42"
|
|
||||||
SCODOC_ENS_ID = "enseignantUS"
|
|
||||||
SCODOC_ENS_PASS = "enseignant@"
|
|
||||||
SCODOC_CHEF_ID = "chefdesetudesUS"
|
|
||||||
SCODOC_CHEF_PASS = "passwordUS42"
|
|
||||||
LINK_SCODOC_SERVER = "root@scodoc-dev-iutinfo.univ-lille.fr"
|
|
||||||
BASE_NOT_SECURED_URL = "scodoc-dev-iutinfo.univ-lille.fr/"
|
|
Loading…
Reference in New Issue
Block a user