From d835266fde6c1ba55fb2ec4509ddabb9b7f2e9f0 Mon Sep 17 00:00:00 2001 From: singhalshubh Date: Thu, 5 Jul 2018 16:43:44 +0530 Subject: [PATCH 1/2] Testing for Notification system --- .../Feed for draft to visible.py | 35 + ...tification for publishable to publisher.py | 53 + ...notification for visible to publishable.py | 41 + .../Group draft to private.py | 45 + .../Group edit private articles .py | 46 + .../Group edit the visible article.py | 45 + .../Group private to visible.py | 45 + .../Group role change.py | 58 + .../Group visible to publish.py | 45 + .../Group visible to reject.py | 48 + .../Notification for editing the article.py | 49 + ...Notification system Report for Testing.pdf | Bin 0 -> 89297 bytes .../Remove the users of different roles.py | 50 + .../Removing users in the group.py | 48 + .../Role to role change.py | 56 + .../Subscribe the community.py | 35 + .../Unsubscribe the Group.py | 43 + .../Unsubscribe the community.py | 42 + .../geckodriver.log | 6745 +++++++++++++++++ 19 files changed, 7529 insertions(+) create mode 100644 Notification-system-Testing-using-selenium-master/Feed for draft to visible.py create mode 100644 Notification-system-Testing-using-selenium-master/Feeds and notification for publishable to publisher.py create mode 100644 Notification-system-Testing-using-selenium-master/Feeds and notification for visible to publishable.py create mode 100644 Notification-system-Testing-using-selenium-master/Group draft to private.py create mode 100644 Notification-system-Testing-using-selenium-master/Group edit private articles .py create mode 100644 Notification-system-Testing-using-selenium-master/Group edit the visible article.py create mode 100644 Notification-system-Testing-using-selenium-master/Group private to visible.py create mode 100644 Notification-system-Testing-using-selenium-master/Group role change.py create mode 100644 Notification-system-Testing-using-selenium-master/Group visible to publish.py create mode 100644 Notification-system-Testing-using-selenium-master/Group visible to reject.py create mode 100644 Notification-system-Testing-using-selenium-master/Notification for editing the article.py create mode 100644 Notification-system-Testing-using-selenium-master/Notification system Report for Testing.pdf create mode 100644 Notification-system-Testing-using-selenium-master/Remove the users of different roles.py create mode 100644 Notification-system-Testing-using-selenium-master/Removing users in the group.py create mode 100644 Notification-system-Testing-using-selenium-master/Role to role change.py create mode 100644 Notification-system-Testing-using-selenium-master/Subscribe the community.py create mode 100644 Notification-system-Testing-using-selenium-master/Unsubscribe the Group.py create mode 100644 Notification-system-Testing-using-selenium-master/Unsubscribe the community.py create mode 100644 Notification-system-Testing-using-selenium-master/geckodriver.log diff --git a/Notification-system-Testing-using-selenium-master/Feed for draft to visible.py b/Notification-system-Testing-using-selenium-master/Feed for draft to visible.py new file mode 100644 index 0000000..2f9197b --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Feed for draft to visible.py @@ -0,0 +1,35 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + + def setUp(self): + self.driver = webdriver.Firefox() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[0]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + driver.get(config('IP_ADDRESS') + '/mydashboard/') + driver.find_element_by_xpath('//a [@href="/article-view/4/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/4/"]').click() + #make the id as visible of the button of visible in html file + driver.find_element_by_id('publish').click() + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + + def tearDown(self): + self.driver.quit() + + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Feeds and notification for publishable to publisher.py b/Notification-system-Testing-using-selenium-master/Feeds and notification for publishable to publisher.py new file mode 100644 index 0000000..b1f4da2 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Feeds and notification for publishable to publisher.py @@ -0,0 +1,53 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def checkAllUserNotification(self,var,driver): + self.login(var,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + "/notifications/") + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(2,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/2/"]').click() + #make the id as visible of the button of visible in html file + driver.find_element_by_xpath('//a [@href="/article-view/6/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/6/"]').click() + driver.find_element_by_id('publish').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + for i in range(0,4): + self.checkAllUserNotification(i,driver) + + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Feeds and notification for visible to publishable.py b/Notification-system-Testing-using-selenium-master/Feeds and notification for visible to publishable.py new file mode 100644 index 0000000..83c4c38 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Feeds and notification for visible to publishable.py @@ -0,0 +1,41 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/mydashboard/') + driver.find_element_by_xpath('//a [@href="/article-view/5/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/5/"]').click() + #make the id as visible of the button of visible in html file + driver.find_element_by_id('publish').click() + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + self.login(1) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + "/notifications/") + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group draft to private.py b/Notification-system-Testing-using-selenium-master/Group draft to private.py new file mode 100644 index 0000000..7daa6d0 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group draft to private.py @@ -0,0 +1,45 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/mydashboard/') + driver.find_element_by_xpath('//a [@href="/article-view/8/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/8/"]').click() + driver.find_element_by_id('visible').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group-feed/1/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + for i in range(1,4): + self.login(i,driver) + driver.find_element_by_xpath('//a [@href="/notifications/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group edit private articles .py b/Notification-system-Testing-using-selenium-master/Group edit private articles .py new file mode 100644 index 0000000..ba84986 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group edit private articles .py @@ -0,0 +1,46 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + self.login(i,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group_content/1/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/11/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/11/"]').click() + driver.find_element_by_id('savechanges').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group edit the visible article.py b/Notification-system-Testing-using-selenium-master/Group edit the visible article.py new file mode 100644 index 0000000..926984b --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group edit the visible article.py @@ -0,0 +1,45 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,3): + self.login(i,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group_content/1/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/11/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/11/"]').click() + driver.find_element_by_id('savechanges').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group private to visible.py b/Notification-system-Testing-using-selenium-master/Group private to visible.py new file mode 100644 index 0000000..40cab72 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group private to visible.py @@ -0,0 +1,45 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/mydashboard/') + driver.find_element_by_xpath('//a [@href="/article-view/8/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/8/"]').click() + driver.find_element_by_id('publish').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group-feed/1/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + for i in range(1,4): + self.login(i,driver) + driver.find_element_by_xpath('//a [@href="/notifications/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group role change.py b/Notification-system-Testing-using-selenium-master/Group role change.py new file mode 100644 index 0000000..ef0ba77 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group role change.py @@ -0,0 +1,58 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium.webdriver.support.select import Select +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def fillTheForm(self,driver,var,roleid): + elem = driver.find_element_by_id("username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + role = config('NOTIFICATION_GROUP_ROLE').split(',') + elem = driver.find_element_by_id("role") + elem.send_keys(role[roleid]) + driver.find_element_by_id('update').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + self.login(var,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group-feed/1/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + for j in range(0,3): + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/manage_group/1/"]').click() + self.fillTheForm(driver,i,j) + + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Group visible to publish.py b/Notification-system-Testing-using-selenium-master/Group visible to publish.py new file mode 100644 index 0000000..5059e93 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group visible to publish.py @@ -0,0 +1,45 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(2,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group_content/1/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/8/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/8/"]').click() + driver.find_element_by_id('publish').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/articles/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + for i in range(1,4): + self.login(i,driver) + driver.find_element_by_xpath('//a [@href="/notifications/"]').click() + driver.get(config('IP_ADDRESS') + 'logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/Notification-system-Testing-using-selenium-master/Group visible to reject.py b/Notification-system-Testing-using-selenium-master/Group visible to reject.py new file mode 100644 index 0000000..4b05b3b --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Group visible to reject.py @@ -0,0 +1,48 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(2,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group_content/1/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/10/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/10/"]').click() + driver.find_element_by_id('reject').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/group-feed/1/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + for i in range(1,3): + self.login(i,driver) + driver.find_element_by_xpath('//a [@href="/notifications/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Notification for editing the article.py b/Notification-system-Testing-using-selenium-master/Notification for editing the article.py new file mode 100644 index 0000000..f205173 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Notification for editing the article.py @@ -0,0 +1,49 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(0,3): + self.login(i,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/2/"]').click() + #make the id as visible of the button of visible in html file + driver.find_element_by_xpath('//a [@href="/article-view/7/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/7/"]').click() + driver.find_element_by_id('savechanges').click() + driver.implicitly_wait(1000) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + self.login(3,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.implicitly_wait(100) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Notification system Report for Testing.pdf b/Notification-system-Testing-using-selenium-master/Notification system Report for Testing.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2fcbb2c6d9c41138ad99f1704145d1e284b0c91e GIT binary patch literal 89297 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 literal 0 HcmV?d00001 diff --git a/Notification-system-Testing-using-selenium-master/Remove the users of different roles.py b/Notification-system-Testing-using-selenium-master/Remove the users of different roles.py new file mode 100644 index 0000000..3ca6bd7 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Remove the users of different roles.py @@ -0,0 +1,50 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium.webdriver.support.select import Select +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def fillTheForm(self,driver,var): + elem = driver.find_element_by_id("username") + user = config('user').split(',') + elem.send_keys(user[var]) + driver.find_element_by_id('remove').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + self.login(var,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + driver.find_element_by_xpath('//a [@href="/manage_community/2/"]').click() + self.fillTheForm(driver,i) + + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Removing users in the group.py b/Notification-system-Testing-using-selenium-master/Removing users in the group.py new file mode 100644 index 0000000..c8b7b32 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Removing users in the group.py @@ -0,0 +1,48 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium.webdriver.support.select import Select +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def fillTheForm(self,driver,var): + elem = driver.find_element_by_id("username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + driver.find_element_by_id('remove').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + self.login(var,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_xpath('//a [@href="/manage_group/1/"]').click() + self.fillTheForm(driver,i) + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Role to role change.py b/Notification-system-Testing-using-selenium-master/Role to role change.py new file mode 100644 index 0000000..297a223 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Role to role change.py @@ -0,0 +1,56 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium.webdriver.support.select import Select +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def fillTheForm(self,driver,var,roleid): + elem = driver.find_element_by_id("username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + role = config('NOTIFICATION_ROLE').split(',') + elem = driver.find_element_by_id("role") + elem.send_keys(role[roleid]) + driver.find_element_by_id('update').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + self.login(var,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + for j in range(0,3): + self.login(0,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/manage_community/2/"]').click() + self.fillTheForm(driver,i,j) + + + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Subscribe the community.py b/Notification-system-Testing-using-selenium-master/Subscribe the community.py new file mode 100644 index 0000000..23b60bf --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Subscribe the community.py @@ -0,0 +1,35 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + self.login(3,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_id("join-us").click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/Notification-system-Testing-using-selenium-master/Unsubscribe the Group.py b/Notification-system-Testing-using-selenium-master/Unsubscribe the Group.py new file mode 100644 index 0000000..223551e --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Unsubscribe the Group.py @@ -0,0 +1,43 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + self.login(i,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/1/"]').click() + driver.find_element_by_id("Unsubscribe").click() + driver.find_element_by_id("Yes").click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + #make the id as visible of the button of visible in html file + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/Unsubscribe the community.py b/Notification-system-Testing-using-selenium-master/Unsubscribe the community.py new file mode 100644 index 0000000..9d03cc8 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/Unsubscribe the community.py @@ -0,0 +1,42 @@ +__author__= 'shubh' +import unittest +from decouple import config +from selenium import webdriver + +class signup(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.driver = webdriver.Firefox() + + def login(self,var,driver): + driver.get(config('IP_ADDRESS')+ ":" + config('NOTIFICATION_PORT')) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/login/?next=/') + elem = driver.find_element_by_id("id_username") + user = config('NOTIFICATION_USER').split(',') + elem.send_keys(user[var]) + elem = driver.find_element_by_id("id_password") + elem.send_keys(config('NOTIFICATION_PASSWORD')) + driver.find_element_by_class_name('btn-block').click() + + def test_draftToVisisbleState(self): + driver = webdriver.Firefox() + for i in range(1,4): + self.login(i,driver) + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_id("Unsubscribe").click() + driver.find_element_by_id("Yes").click() + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/notifications/') + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/communities/') + driver.find_element_by_xpath('//a [@href="/community-view/2/"]').click() + driver.find_element_by_xpath('//a [@href="/community_feed/2/"]').click() + #make the id as visible of the button of visible in html file + driver.get(config('IP_ADDRESS') + ":" + config('NOTIFICATION_PORT') + '/logout/') + + @classmethod + def tearDown(cls): + cls.driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/Notification-system-Testing-using-selenium-master/geckodriver.log b/Notification-system-Testing-using-selenium-master/geckodriver.log new file mode 100644 index 0000000..f1de064 --- /dev/null +++ b/Notification-system-Testing-using-selenium-master/geckodriver.log @@ -0,0 +1,6745 @@ +1530250009814 geckodriver INFO geckodriver 0.21.0 +1530250009870 geckodriver INFO Listening on 127.0.0.1:41507 +1530250010834 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.DrinddkTWbNE" +1530250015119 Marionette INFO Listening on port 44515 +1530250015147 Marionette WARN TLS certificate errors will be ignored for this session +1530250015181 geckodriver INFO geckodriver 0.21.0 +1530250015185 geckodriver INFO Listening on 127.0.0.1:54959 +1530250016187 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.WHYsGFevpWZA" +1530250019880 Marionette INFO Listening on port 33301 +1530250019902 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530250352661 geckodriver INFO geckodriver 0.21.0 +1530250352664 geckodriver INFO Listening on 127.0.0.1:45241 +1530250353670 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.seg1PLUimFxr" +1530250356546 Marionette INFO Listening on port 37809 +1530250356586 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530250510662 geckodriver INFO geckodriver 0.21.0 +1530250510665 geckodriver INFO Listening on 127.0.0.1:33301 +1530250511671 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.jHzJDuXPpeoR" +1530250514646 Marionette INFO Listening on port 36339 +1530250514683 Marionette WARN TLS certificate errors will be ignored for this session +[Parent 6217, Gecko_IOThread] WARNING: pipe error (88): Connection reset by peer: file /build/firefox-AIw0T6/firefox-60.0.1+build2/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +1530250714905 geckodriver INFO geckodriver 0.21.0 +1530250714909 geckodriver INFO Listening on 127.0.0.1:43259 +1530250715913 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.3qdp1XeuCHym" +1530250719079 Marionette INFO Listening on port 34519 +1530250719122 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530251142449 geckodriver INFO geckodriver 0.21.0 +1530251142452 geckodriver INFO Listening on 127.0.0.1:39241 +1530251143457 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.C2Igh2yXIdXX" +1530251146584 Marionette INFO Listening on port 34209 +1530251146667 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530251207674 geckodriver INFO geckodriver 0.21.0 +1530251207678 geckodriver INFO Listening on 127.0.0.1:52385 +1530251208682 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.A1w61i1oOWj9" +1530251211816 Marionette INFO Listening on port 36465 +1530251211891 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530251473437 geckodriver INFO geckodriver 0.21.0 +1530251473440 geckodriver INFO Listening on 127.0.0.1:37929 +1530251474446 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.YVMYpuzIlS0k" +1530251477652 Marionette INFO Listening on port 32777 +1530251477660 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530251587605 geckodriver INFO geckodriver 0.21.0 +1530251587609 geckodriver INFO Listening on 127.0.0.1:40135 +1530251588613 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.DMvupJRzfYZg" +1530251591733 Marionette INFO Listening on port 37809 +1530251591823 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530252277315 geckodriver INFO geckodriver 0.21.0 +1530252277319 geckodriver INFO Listening on 127.0.0.1:46887 +1530252278321 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.13jQg3vKDU4t" +1530252281118 Marionette INFO Listening on port 41649 +1530252281134 Marionette WARN TLS certificate errors will be ignored for this session +1530252281172 geckodriver INFO geckodriver 0.21.0 +1530252281176 geckodriver INFO Listening on 127.0.0.1:55337 +1530252282178 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Kw9FmuwZ9pWT" +1530252286751 Marionette INFO Listening on port 36105 +1530252286795 Marionette WARN TLS certificate errors will be ignored for this session +1530252288519 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530252304889 geckodriver INFO geckodriver 0.21.0 +1530252304893 geckodriver INFO Listening on 127.0.0.1:53819 +1530252305897 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.gUneLfBbcQsZ" +1530252308984 Marionette INFO Listening on port 38579 +1530252309009 Marionette WARN TLS certificate errors will be ignored for this session +1530252309054 geckodriver INFO geckodriver 0.21.0 +1530252309058 geckodriver INFO Listening on 127.0.0.1:51815 +1530252310058 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.6Zrh1cikxzy4" +1530252314440 Marionette INFO Listening on port 41103 +1530252314471 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530252466608 geckodriver INFO geckodriver 0.21.0 +1530252466611 geckodriver INFO Listening on 127.0.0.1:47921 +1530252467614 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.aQRjTWXdrydP" +1530252470951 Marionette INFO Listening on port 34505 +1530252471023 Marionette WARN TLS certificate errors will be ignored for this session +1530252471059 geckodriver INFO geckodriver 0.21.0 +1530252471063 geckodriver INFO Listening on 127.0.0.1:47313 +1530252472065 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.fFqQ6Bu60ta3" +1530252476482 Marionette INFO Listening on port 42587 +1530252476578 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530252710146 geckodriver INFO geckodriver 0.21.0 +1530252710149 geckodriver INFO Listening on 127.0.0.1:58229 +1530252711153 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Y5p6UJKVdt0G" +1530252714185 Marionette INFO Listening on port 45207 +1530252714276 Marionette WARN TLS certificate errors will be ignored for this session +1530252714319 geckodriver INFO geckodriver 0.21.0 +1530252714322 geckodriver INFO Listening on 127.0.0.1:59829 +1530252715324 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.JSGT2ymFnUy1" +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +IPDL protocol error: Handler returned error code! + +###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure) + +1530252719163 Marionette INFO Listening on port 32993 +1530252719234 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530252843906 geckodriver INFO geckodriver 0.21.0 +1530252843910 geckodriver INFO Listening on 127.0.0.1:52591 +1530252844915 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.TKnqy3GWEv9n" +1530252849623 Marionette INFO Listening on port 43653 +1530252849627 Marionette WARN TLS certificate errors will be ignored for this session +1530252849667 geckodriver INFO geckodriver 0.21.0 +1530252849671 geckodriver INFO Listening on 127.0.0.1:54479 +1530252850672 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.71YLxIXVfn61" +1530252854662 Marionette INFO Listening on port 32883 +1530252854684 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530252927659 geckodriver INFO geckodriver 0.21.0 +1530252927662 geckodriver INFO Listening on 127.0.0.1:45447 +1530252928665 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.WCHZB6zjezTs" +1530252932037 Marionette INFO Listening on port 42389 +1530252932080 Marionette WARN TLS certificate errors will be ignored for this session +1530252932114 geckodriver INFO geckodriver 0.21.0 +1530252932118 geckodriver INFO Listening on 127.0.0.1:53015 +1530252933118 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.2aqVA429o5d0" +1530252937128 Marionette INFO Listening on port 38725 +1530252937245 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530253029149 geckodriver INFO geckodriver 0.21.0 +1530253029152 geckodriver INFO Listening on 127.0.0.1:52577 +1530253030155 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qqmnimmecvWH" +1530253033050 Marionette INFO Listening on port 45087 +1530253033065 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530253098351 geckodriver INFO geckodriver 0.21.0 +1530253098354 geckodriver INFO Listening on 127.0.0.1:46769 +1530253099359 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.tC0TDJOl8m1T" +1530253102393 Marionette INFO Listening on port 37969 +1530253102470 Marionette WARN TLS certificate errors will be ignored for this session +1530253102506 geckodriver INFO geckodriver 0.21.0 +1530253102510 geckodriver INFO Listening on 127.0.0.1:37525 +1530253103513 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.VLWQpXBL5bg8" +1530253107326 Marionette INFO Listening on port 40291 +1530253107424 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + +[Parent 17637, Gecko_IOThread] WARNING: pipe error (95): Connection reset by peer: file /build/firefox-AIw0T6/firefox-60.0.1+build2/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530253252402 geckodriver INFO geckodriver 0.21.0 +1530253252406 geckodriver INFO Listening on 127.0.0.1:44831 +1530253253410 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.mVqz3hAY6Nrz" +1530253256391 Marionette INFO Listening on port 40821 +1530253256420 Marionette WARN TLS certificate errors will be ignored for this session +1530253256483 geckodriver INFO geckodriver 0.21.0 +1530253256488 geckodriver INFO Listening on 127.0.0.1:42277 +1530253257491 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.rFMEOY3HaF55" +1530253261270 Marionette INFO Listening on port 37721 +1530253261302 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530253378460 geckodriver INFO geckodriver 0.21.0 +1530253378464 geckodriver INFO Listening on 127.0.0.1:46359 +1530253379466 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Kf2M3rTWrHdd" +1530253382472 Marionette INFO Listening on port 35239 +1530253382475 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530253449467 geckodriver INFO geckodriver 0.21.0 +1530253449470 geckodriver INFO Listening on 127.0.0.1:54091 +1530253450475 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.0Unvt0BWbULh" +1530253453342 Marionette INFO Listening on port 37679 +1530253453385 Marionette WARN TLS certificate errors will be ignored for this session +1530253453420 geckodriver INFO geckodriver 0.21.0 +1530253453424 geckodriver INFO Listening on 127.0.0.1:36107 +1530253454426 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.n9Yi4dze84Qe" +1530253457922 Marionette INFO Listening on port 35359 +1530253457942 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530253866642 geckodriver INFO geckodriver 0.21.0 +1530253866646 geckodriver INFO Listening on 127.0.0.1:51099 +1530253867651 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.D4bvUMhLxeBq" +1530253870596 Marionette INFO Listening on port 42603 +1530253870675 Marionette WARN TLS certificate errors will be ignored for this session +1530253870719 geckodriver INFO geckodriver 0.21.0 +1530253870723 geckodriver INFO Listening on 127.0.0.1:40763 +1530253871726 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.4kuJHzl19RIy" +1530253873177 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530253875839 Marionette INFO Listening on port 46749 +1530253875939 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530254285319 geckodriver INFO geckodriver 0.21.0 +1530254285323 geckodriver INFO Listening on 127.0.0.1:36751 +1530254286326 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.jCO0eoxLO0T4" +1530254289203 Marionette INFO Listening on port 36929 +1530254289238 Marionette WARN TLS certificate errors will be ignored for this session +1530254289274 geckodriver INFO geckodriver 0.21.0 +1530254289277 geckodriver INFO Listening on 127.0.0.1:51755 +1530254290279 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.cdFH1G58jL24" +[Child 20921, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-AIw0T6/firefox-60.0.1+build2/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530254293829 Marionette INFO Listening on port 33257 +1530254293912 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530254358170 addons.productaddons WARN Failed downloading XML, status: 0, reason: timeout +1530254448969 addons.productaddons WARN Failed downloading via XHR, status: 0, reason: error +1530254920819 geckodriver INFO geckodriver 0.21.0 +1530254920823 geckodriver INFO Listening on 127.0.0.1:32875 +1530254921825 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.FHoYSQLSqwcy" +1530254924828 Marionette INFO Listening on port 46123 +1530254924841 Marionette WARN TLS certificate errors will be ignored for this session +1530254924882 geckodriver INFO geckodriver 0.21.0 +1530254924886 geckodriver INFO Listening on 127.0.0.1:36767 +1530254925887 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.aEpWm3p64cy0" +1530254929400 Marionette INFO Listening on port 43917 +1530254929497 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530255131225 geckodriver INFO geckodriver 0.21.0 +1530255131230 geckodriver INFO Listening on 127.0.0.1:41085 +1530255132234 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wBJbGIvyrw1X" +1530255135253 Marionette INFO Listening on port 43851 +1530255135345 Marionette WARN TLS certificate errors will be ignored for this session +1530255135382 geckodriver INFO geckodriver 0.21.0 +1530255135386 geckodriver INFO Listening on 127.0.0.1:52993 +1530255135959 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +1530255136389 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.VNDrHJwvCDeb" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530255139709 Marionette INFO Listening on port 38875 +1530255139802 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530257664999 geckodriver INFO geckodriver 0.21.0 +1530257665002 geckodriver INFO Listening on 127.0.0.1:50537 +1530257666006 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.f9OmvhXG6HOA" +1530257668947 Marionette INFO Listening on port 36877 +1530257669014 Marionette WARN TLS certificate errors will be ignored for this session +1530257669100 geckodriver INFO geckodriver 0.21.0 +1530257669105 geckodriver INFO Listening on 127.0.0.1:43211 +1530257670106 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.dDJNL7rmO21u" +1530257670147 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530257673712 Marionette INFO Listening on port 37113 +1530257673717 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530257824716 geckodriver INFO geckodriver 0.21.0 +1530257824719 geckodriver INFO Listening on 127.0.0.1:45105 +1530257825725 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.6aj3iIVrByaA" +1530257828710 Marionette INFO Listening on port 36857 +1530257828742 Marionette WARN TLS certificate errors will be ignored for this session +1530257828794 geckodriver INFO geckodriver 0.21.0 +1530257828799 geckodriver INFO Listening on 127.0.0.1:55427 +1530257829430 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530257829799 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.5yIGPOoVP54D" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530257833623 Marionette INFO Listening on port 43735 +1530257833711 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +1530257977411 geckodriver INFO geckodriver 0.21.0 +1530257977415 geckodriver INFO Listening on 127.0.0.1:38423 +1530257978419 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Tbj7ujVzR12A" +1530257981458 Marionette INFO Listening on port 36817 +1530257981528 Marionette WARN TLS certificate errors will be ignored for this session +1530257981577 geckodriver INFO geckodriver 0.21.0 +1530257981582 geckodriver INFO Listening on 127.0.0.1:53549 +1530257982582 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.DJggN2CNfMVr" +1530257986852 Marionette INFO Listening on port 37771 +1530257986900 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530258050593 geckodriver INFO geckodriver 0.21.0 +1530258050597 geckodriver INFO Listening on 127.0.0.1:42411 +1530258051601 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ZjHz5smg1rxx" +1530258054876 Marionette INFO Listening on port 33475 +1530258055050 Marionette WARN TLS certificate errors will be ignored for this session +1530258055105 geckodriver INFO geckodriver 0.21.0 +1530258055109 geckodriver INFO Listening on 127.0.0.1:55489 +1530258056109 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.zRtmDHFiayWf" +1530258060524 Marionette INFO Listening on port 44523 +1530258060622 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530258156149 geckodriver INFO geckodriver 0.21.0 +1530258156152 geckodriver INFO Listening on 127.0.0.1:42319 +1530258157157 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.NUEJKhYSpPcu" +1530258160202 Marionette INFO Listening on port 45885 +1530258160274 Marionette WARN TLS certificate errors will be ignored for this session +1530258160321 geckodriver INFO geckodriver 0.21.0 +1530258160325 geckodriver INFO Listening on 127.0.0.1:40443 +1530258161325 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ZeYOntYsEZUt" +1530258162929 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530258165707 Marionette INFO Listening on port 35199 +1530258165737 Marionette WARN TLS certificate errors will be ignored for this session +1530258271447 geckodriver INFO geckodriver 0.21.0 +1530258271451 geckodriver INFO Listening on 127.0.0.1:34707 +1530258272457 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ZPF1gipwM4C7" +1530258275393 Marionette INFO Listening on port 37275 +1530258275472 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/, line 362: ReferenceError: None is not defined +1530258382783 geckodriver INFO geckodriver 0.21.0 +1530258382786 geckodriver INFO Listening on 127.0.0.1:35851 +1530258383791 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.8BXSW0j0kkam" +1530258386798 Marionette INFO Listening on port 33573 +1530258386904 Marionette WARN TLS certificate errors will be ignored for this session +1530258386936 geckodriver INFO geckodriver 0.21.0 +1530258386940 geckodriver INFO Listening on 127.0.0.1:43431 +1530258387941 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Pfi1qAcBWaY0" +1530258391848 Marionette INFO Listening on port 40911 +1530258391859 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://localhost:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/, line 362: ReferenceError: None is not defined +1530258501306 geckodriver INFO geckodriver 0.21.0 +1530258501309 geckodriver INFO Listening on 127.0.0.1:54211 +1530258502315 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.s363zTA0hb1Z" +1530258505318 Marionette INFO Listening on port 36283 +1530258505325 Marionette WARN TLS certificate errors will be ignored for this session +1530258505371 geckodriver INFO geckodriver 0.21.0 +1530258505376 geckodriver INFO Listening on 127.0.0.1:44507 +1530258506377 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.3uLc0n9PbVzi" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530258510843 Marionette INFO Listening on port 42187 +1530258510899 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530258665983 geckodriver INFO geckodriver 0.21.0 +1530258665987 geckodriver INFO Listening on 127.0.0.1:46533 +1530258666992 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.nqKjmklgj440" +1530258670011 Marionette INFO Listening on port 46275 +1530258670103 Marionette WARN TLS certificate errors will be ignored for this session +1530258670147 geckodriver INFO geckodriver 0.21.0 +1530258670152 geckodriver INFO Listening on 127.0.0.1:40491 +1530258671153 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.afWrSpu3jaoU" +1530258672274 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530258675174 Marionette INFO Listening on port 41759 +1530258675263 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530258969646 geckodriver INFO geckodriver 0.21.0 +1530258969650 geckodriver INFO Listening on 127.0.0.1:60383 +1530258970654 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qKLnEuOmOqzG" +1530258973752 Marionette INFO Listening on port 45723 +1530258973767 Marionette WARN TLS certificate errors will be ignored for this session +1530258973813 geckodriver INFO geckodriver 0.21.0 +1530258973818 geckodriver INFO Listening on 127.0.0.1:33995 +1530258974819 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.7i23tTRZVoZQ" +1530258978672 Marionette INFO Listening on port 44929 +1530258978730 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530259117815 geckodriver INFO geckodriver 0.21.0 +1530259117819 geckodriver INFO Listening on 127.0.0.1:56761 +1530259118822 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.EqesIV9m6aCO" +1530259122082 Marionette INFO Listening on port 46077 +1530259122138 Marionette WARN TLS certificate errors will be ignored for this session +1530259122171 geckodriver INFO geckodriver 0.21.0 +1530259122175 geckodriver INFO Listening on 127.0.0.1:42851 +1530259123177 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.git7ZimWZU6w" +1530259126814 Marionette INFO Listening on port 39465 +1530259126888 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530259924476 geckodriver INFO geckodriver 0.21.0 +1530259924481 geckodriver INFO Listening on 127.0.0.1:34513 +1530259925485 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.vHqPhniquxOf" +1530259928353 Marionette INFO Listening on port 41641 +1530259928397 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +1530259983307 geckodriver INFO geckodriver 0.21.0 +1530259983311 geckodriver INFO Listening on 127.0.0.1:45253 +1530259984313 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.zvJZ7fm9E368" +1530259987257 Marionette INFO Listening on port 36607 +1530259987333 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530260244902 geckodriver INFO geckodriver 0.21.0 +1530260244906 geckodriver INFO Listening on 127.0.0.1:46003 +1530260245911 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.zxBXj3qW0i5Y" +1530260249067 Marionette INFO Listening on port 44925 +1530260249128 Marionette WARN TLS certificate errors will be ignored for this session +1530260249164 geckodriver INFO geckodriver 0.21.0 +1530260249168 geckodriver INFO Listening on 127.0.0.1:39287 +1530260250170 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.7b17AhuFiaNx" +1530260250484 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530260253966 Marionette INFO Listening on port 38291 +1530260253987 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +1530260363307 geckodriver INFO geckodriver 0.21.0 +1530260363311 geckodriver INFO Listening on 127.0.0.1:37645 +1530260364313 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.DIOXz4VPvy5n" +1530260367288 Marionette INFO Listening on port 35469 +1530260367323 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530260478028 geckodriver INFO geckodriver 0.21.0 +1530260478031 geckodriver INFO Listening on 127.0.0.1:42527 +1530260479037 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.dxH6yvRIo3OC" +1530260481899 Marionette INFO Listening on port 43739 +1530260481946 Marionette WARN TLS certificate errors will be ignored for this session +1530260481982 geckodriver INFO geckodriver 0.21.0 +1530260481986 geckodriver INFO Listening on 127.0.0.1:46587 +1530260482989 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.cU3HSZ7S0X9i" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530260487107 Marionette INFO Listening on port 44515 +1530260487201 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://localhost:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://localhost:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://localhost:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://localhost:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530268643816 geckodriver INFO geckodriver 0.21.0 +1530268643819 geckodriver INFO Listening on 127.0.0.1:38947 +1530268644824 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.NGGGMxMqDkpl" +1530268647744 Marionette INFO Listening on port 40653 +1530268647834 Marionette WARN TLS certificate errors will be ignored for this session +1530268647875 geckodriver INFO geckodriver 0.21.0 +1530268647879 geckodriver INFO Listening on 127.0.0.1:35341 +1530268648881 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.CvDkD1NotjpD" +1530268650076 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530268652805 Marionette INFO Listening on port 40179 +1530268652895 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530268756837 geckodriver INFO geckodriver 0.21.0 +1530268756841 geckodriver INFO Listening on 127.0.0.1:58439 +1530268757845 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.p9gMOBBShPsV" +1530268760977 Marionette INFO Listening on port 33591 +1530268761065 Marionette WARN TLS certificate errors will be ignored for this session +1530268761101 geckodriver INFO geckodriver 0.21.0 +1530268761105 geckodriver INFO Listening on 127.0.0.1:59247 +1530268762106 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ilc6oqD3qScz" +1530268762324 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530268765584 Marionette INFO Listening on port 41393 +1530268765628 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530269221072 geckodriver INFO geckodriver 0.21.0 +1530269221076 geckodriver INFO Listening on 127.0.0.1:42755 +1530269222080 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.KxudWXsJ6FZ1" +1530269225005 Marionette INFO Listening on port 41933 +1530269225089 Marionette WARN TLS certificate errors will be ignored for this session +1530269225131 geckodriver INFO geckodriver 0.21.0 +1530269225135 geckodriver INFO Listening on 127.0.0.1:49591 +1530269226136 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.JSzpbwhtNKbV" +1530269227040 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530269230309 Marionette INFO Listening on port 38299 +1530269230349 Marionette WARN TLS certificate errors will be ignored for this session +1530269491239 geckodriver INFO geckodriver 0.21.0 +1530269491243 geckodriver INFO Listening on 127.0.0.1:38183 +1530269492248 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.NvrVcYD2N0PK" +1530269495367 Marionette INFO Listening on port 37289 +1530269495458 Marionette WARN TLS certificate errors will be ignored for this session +1530269495495 geckodriver INFO geckodriver 0.21.0 +1530269495499 geckodriver INFO Listening on 127.0.0.1:57275 +1530269495887 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530269496501 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.U28E8zSNtt2s" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530269500139 Marionette INFO Listening on port 37923 +1530269500211 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530269534880 geckodriver INFO geckodriver 0.21.0 +1530269534884 geckodriver INFO Listening on 127.0.0.1:59147 +1530269535888 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.VnyfssUkyCJH" +1530269539059 Marionette INFO Listening on port 34071 +1530269539103 Marionette WARN TLS certificate errors will be ignored for this session +1530269539140 geckodriver INFO geckodriver 0.21.0 +1530269539144 geckodriver INFO Listening on 127.0.0.1:51663 +1530269539568 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530269540146 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.iiXqoH5yIB2V" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530269543831 Marionette INFO Listening on port 46019 +1530269543885 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530269944418 geckodriver INFO geckodriver 0.21.0 +1530269944422 geckodriver INFO Listening on 127.0.0.1:35847 +1530269945426 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.NP1cembEMlzE" +1530269948326 Marionette INFO Listening on port 38379 +1530269948343 Marionette WARN TLS certificate errors will be ignored for this session +1530269948380 geckodriver INFO geckodriver 0.21.0 +1530269948384 geckodriver INFO Listening on 127.0.0.1:52943 +1530269949384 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.bhfgXbBA1uBg" +1530269949520 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530269952799 Marionette INFO Listening on port 42483 +1530269952894 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/, line 362: ReferenceError: None is not defined +1530270039741 geckodriver INFO geckodriver 0.21.0 +1530270039744 geckodriver INFO Listening on 127.0.0.1:36487 +1530270040746 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.pUiCwVP4i2iz" +1530270043866 Marionette INFO Listening on port 38473 +1530270043956 Marionette WARN TLS certificate errors will be ignored for this session +1530270043997 geckodriver INFO geckodriver 0.21.0 +1530270044001 geckodriver INFO Listening on 127.0.0.1:52791 +1530270045002 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.lZmUattTMc39" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270049206 Marionette INFO Listening on port 43471 +1530270049216 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/, line 362: ReferenceError: None is not defined +1530270116981 geckodriver INFO geckodriver 0.21.0 +1530270116985 geckodriver INFO Listening on 127.0.0.1:33521 +1530270117990 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.0H4EYztSxbA3" +1530270120805 Marionette INFO Listening on port 39591 +1530270120899 Marionette WARN TLS certificate errors will be ignored for this session +1530270120936 geckodriver INFO geckodriver 0.21.0 +1530270120940 geckodriver INFO Listening on 127.0.0.1:55281 +1530270121942 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.GMMd5OQi1wvm" +1530270125605 Marionette INFO Listening on port 43759 +1530270125651 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/, line 362: ReferenceError: None is not defined +1530270375479 geckodriver INFO geckodriver 0.21.0 +1530270375483 geckodriver INFO Listening on 127.0.0.1:41781 +1530270376485 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.HOOLpiGDdbj8" +1530270379413 Marionette INFO Listening on port 45461 +1530270379497 Marionette WARN TLS certificate errors will be ignored for this session +1530270379537 geckodriver INFO geckodriver 0.21.0 +1530270379541 geckodriver INFO Listening on 127.0.0.1:53931 +1530270380543 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wKBr1NaZ31wm" +1530270384336 Marionette INFO Listening on port 41797 +1530270384357 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + +1530270497614 geckodriver INFO geckodriver 0.21.0 +1530270497618 geckodriver INFO Listening on 127.0.0.1:48921 +1530270498622 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.HIfZhP9jnEUm" +1530270501762 Marionette INFO Listening on port 46217 +1530270501840 Marionette WARN TLS certificate errors will be ignored for this session +1530270501879 geckodriver INFO geckodriver 0.21.0 +1530270501883 geckodriver INFO Listening on 127.0.0.1:52687 +1530270502652 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530270502885 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.lK6r5qaghmT8" +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270506344 Marionette INFO Listening on port 33685 +1530270506396 Marionette WARN TLS certificate errors will be ignored for this session +1530270507312 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270516322 geckodriver INFO geckodriver 0.21.0 +1530270516326 geckodriver INFO Listening on 127.0.0.1:59663 +1530270517331 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.mIkKmacrUIhO" +1530270520145 Marionette INFO Listening on port 38317 +1530270520241 Marionette WARN TLS certificate errors will be ignored for this session +1530270520281 geckodriver INFO geckodriver 0.21.0 +1530270520285 geckodriver INFO Listening on 127.0.0.1:41165 +1530270521287 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.GrtFmy0ainDO" +1530270521409 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270525094 Marionette INFO Listening on port 40399 +1530270525215 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270913333 geckodriver INFO geckodriver 0.21.0 +1530270913336 geckodriver INFO Listening on 127.0.0.1:56369 +1530270914340 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.f440qAXVWj0Z" +1530270917333 Marionette INFO Listening on port 39749 +1530270917361 Marionette WARN TLS certificate errors will be ignored for this session +1530270917401 geckodriver INFO geckodriver 0.21.0 +1530270917404 geckodriver INFO Listening on 127.0.0.1:55709 +1530270917844 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530270918406 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.IXPODWf7AM9R" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530270922050 Marionette INFO Listening on port 35385 +1530270922116 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +console.error: (new TypeError("content.text is undefined", "resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js", 478)) +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:478:1 +fetchStylesheet@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:408:18 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:388:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:358:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1260:12 +getApplied@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:472:13 +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +console.error: "Protocol error (unknownError): content.text is undefined" +1530270990075 geckodriver INFO geckodriver 0.21.0 +1530270990079 geckodriver INFO Listening on 127.0.0.1:49827 +1530270991081 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ghoPyHJWVFE0" +1530270994199 Marionette INFO Listening on port 43045 +1530270994291 Marionette WARN TLS certificate errors will be ignored for this session +1530270994334 geckodriver INFO geckodriver 0.21.0 +1530270994338 geckodriver INFO Listening on 127.0.0.1:36851 +1530270995338 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.rZC3xhKfoT0U" +1530270999834 Marionette INFO Listening on port 42323 +1530270999855 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530271640189 geckodriver INFO geckodriver 0.21.0 +1530271640193 geckodriver INFO Listening on 127.0.0.1:37431 +1530271641197 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.9jt2HlAzFaXM" +1530271644219 Marionette INFO Listening on port 37387 +1530271644307 Marionette WARN TLS certificate errors will be ignored for this session +1530271644364 geckodriver INFO geckodriver 0.21.0 +1530271644368 geckodriver INFO Listening on 127.0.0.1:52929 +1530271644751 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530271645369 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.LpTdvJA7jJqM" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530271648909 Marionette INFO Listening on port 34363 +1530271648980 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530271808273 geckodriver INFO geckodriver 0.21.0 +1530271808276 geckodriver INFO Listening on 127.0.0.1:55099 +1530271809282 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.V9MiGFqT4qK8" +1530271812206 Marionette INFO Listening on port 43049 +1530271812291 Marionette WARN TLS certificate errors will be ignored for this session +1530271812327 geckodriver INFO geckodriver 0.21.0 +1530271812331 geckodriver INFO Listening on 127.0.0.1:42139 +1530271813334 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qRWW6f5Jt5ku" +1530271813699 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530271816977 Marionette INFO Listening on port 41173 +1530271817057 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530271917356 geckodriver INFO geckodriver 0.21.0 +1530271917359 geckodriver INFO Listening on 127.0.0.1:60087 +1530271918365 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.gjkIMuTkQXfu" +1530271921145 Marionette INFO Listening on port 45543 +1530271921174 Marionette WARN TLS certificate errors will be ignored for this session +1530271921234 geckodriver INFO geckodriver 0.21.0 +1530271921238 geckodriver INFO Listening on 127.0.0.1:38651 +1530271922239 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.2UIUCTVZJBcd" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530271926500 Marionette INFO Listening on port 43667 +1530271926557 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530272038613 geckodriver INFO geckodriver 0.21.0 +1530272038616 geckodriver INFO Listening on 127.0.0.1:55809 +1530272039621 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.HTfuYvhdK210" +1530272042444 Marionette INFO Listening on port 41123 +1530272042531 Marionette WARN TLS certificate errors will be ignored for this session +1530272042569 geckodriver INFO geckodriver 0.21.0 +1530272042573 geckodriver INFO Listening on 127.0.0.1:56981 +1530272043576 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.4pwvv3t08Hbo" +1530272047561 Marionette INFO Listening on port 35367 +1530272047592 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530272244343 geckodriver INFO geckodriver 0.21.0 +1530272244347 geckodriver INFO Listening on 127.0.0.1:49523 +1530272245351 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.tHirciTCC5T4" +1530272248288 Marionette INFO Listening on port 42841 +1530272248370 Marionette WARN TLS certificate errors will be ignored for this session +1530272248413 geckodriver INFO geckodriver 0.21.0 +1530272248417 geckodriver INFO Listening on 127.0.0.1:60661 +1530272249418 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.C8WlzFsRqwWM" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530272253262 Marionette INFO Listening on port 34989 +1530272253334 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530272867808 geckodriver INFO geckodriver 0.21.0 +1530272867812 geckodriver INFO Listening on 127.0.0.1:57817 +1530272868818 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.e86IYs9WJi8q" +1530272871698 Marionette INFO Listening on port 34679 +1530272871731 Marionette WARN TLS certificate errors will be ignored for this session +1530272871768 geckodriver INFO geckodriver 0.21.0 +1530272871772 geckodriver INFO Listening on 127.0.0.1:37917 +1530272872774 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.G4bpoOslB37a" +1530272872966 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530272876084 Marionette INFO Listening on port 36409 +1530272876183 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530273340599 geckodriver INFO geckodriver 0.21.0 +1530273340603 geckodriver INFO Listening on 127.0.0.1:38123 +1530273341607 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.QYwXziLu2nfy" +1530273344720 Marionette INFO Listening on port 37703 +1530273344827 Marionette WARN TLS certificate errors will be ignored for this session +1530273344859 geckodriver INFO geckodriver 0.21.0 +1530273344863 geckodriver INFO Listening on 127.0.0.1:37225 +1530273345865 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.N3p8Hp06i8bG" +1530273349409 Marionette INFO Listening on port 34075 +1530273349475 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530274609586 geckodriver INFO geckodriver 0.21.0 +1530274609590 geckodriver INFO Listening on 127.0.0.1:34217 +1530274610595 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wCetsFMylOs5" +1530274613627 Marionette INFO Listening on port 41877 +1530274613706 Marionette WARN TLS certificate errors will be ignored for this session +1530274613748 geckodriver INFO geckodriver 0.21.0 +1530274613752 geckodriver INFO Listening on 127.0.0.1:44539 +1530274614754 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.yjqPtKrNq1GK" +1530274615905 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530274618458 Marionette INFO Listening on port 41901 +1530274618464 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530274881826 geckodriver INFO geckodriver 0.21.0 +1530274881829 geckodriver INFO Listening on 127.0.0.1:60641 +1530274882833 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.usKktarEXqsT" +1530274885946 Marionette INFO Listening on port 35755 +1530274886049 Marionette WARN TLS certificate errors will be ignored for this session +1530274886082 geckodriver INFO geckodriver 0.21.0 +1530274886086 geckodriver INFO Listening on 127.0.0.1:54871 +1530274887089 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.5mCe9ri2StnD" +1530274888008 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530274890856 Marionette INFO Listening on port 42127 +1530274890900 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +1530275251823 geckodriver INFO geckodriver 0.21.0 +1530275251827 geckodriver INFO Listening on 127.0.0.1:57779 +1530275252831 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.sGKywyMajvFE" +1530275255889 Marionette INFO Listening on port 36681 +1530275255941 Marionette WARN TLS certificate errors will be ignored for this session +1530275255980 geckodriver INFO geckodriver 0.21.0 +1530275255984 geckodriver INFO Listening on 127.0.0.1:54193 +1530275256791 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +1530275256987 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ImGojLivmw3D" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530275260247 Marionette INFO Listening on port 38027 +1530275260360 Marionette WARN TLS certificate errors will be ignored for this session +1530275444407 geckodriver INFO geckodriver 0.21.0 +1530275444411 geckodriver INFO Listening on 127.0.0.1:34219 +1530275445416 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.MRo60FUpdIA8" +1530275448285 Marionette INFO Listening on port 45491 +1530275448326 Marionette WARN TLS certificate errors will be ignored for this session +1530275448379 geckodriver INFO geckodriver 0.21.0 +1530275448382 geckodriver INFO Listening on 127.0.0.1:48859 +1530275449385 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.TsdjKqyta3LW" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530275453449 Marionette INFO Listening on port 42711 +1530275453495 Marionette WARN TLS certificate errors will be ignored for this session +1530275493581 geckodriver INFO geckodriver 0.21.0 +1530275493585 geckodriver INFO Listening on 127.0.0.1:48087 +1530275494588 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.KBalzVX2NzkO" +1530275497491 Marionette INFO Listening on port 33851 +1530275497500 Marionette WARN TLS certificate errors will be ignored for this session +1530275497535 geckodriver INFO geckodriver 0.21.0 +1530275497539 geckodriver INFO Listening on 127.0.0.1:42853 +1530275498541 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.zasRJKLA9tr7" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530275502463 Marionette INFO Listening on port 33857 +1530275502549 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530276143927 geckodriver INFO geckodriver 0.21.0 +1530276143930 geckodriver INFO Listening on 127.0.0.1:49435 +1530276144934 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.yV0b26P9Gcc8" +1530276147841 Marionette INFO Listening on port 40517 +1530276147945 Marionette WARN TLS certificate errors will be ignored for this session +1530276147983 geckodriver INFO geckodriver 0.21.0 +1530276147986 geckodriver INFO Listening on 127.0.0.1:60807 +1530276148574 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +1530276148987 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Os5CcVqHxs5a" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530276152190 Marionette INFO Listening on port 40855 +1530276152197 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530276436649 geckodriver INFO geckodriver 0.21.0 +1530276436653 geckodriver INFO Listening on 127.0.0.1:50561 +1530276437657 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.eKzUHXB5ECAc" +1530276440537 Marionette INFO Listening on port 42259 +1530276440566 Marionette WARN TLS certificate errors will be ignored for this session +1530276440627 geckodriver INFO geckodriver 0.21.0 +1530276440633 geckodriver INFO Listening on 127.0.0.1:49775 +1530276441633 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.40znMmM0vAjv" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530276445825 Marionette INFO Listening on port 42967 +1530276445862 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 503: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +1530276640993 geckodriver INFO geckodriver 0.21.0 +1530276640997 geckodriver INFO Listening on 127.0.0.1:38427 +1530276641998 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.R9Kvnn3ICsH4" +1530276645319 Marionette INFO Listening on port 42615 +1530276645409 Marionette WARN TLS certificate errors will be ignored for this session +1530276645446 geckodriver INFO geckodriver 0.21.0 +1530276645450 geckodriver INFO Listening on 127.0.0.1:44897 +1530276646451 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.B1shvFiFIdjC" +1530276647082 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530276650500 Marionette INFO Listening on port 45137 +1530276650563 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530276872500 geckodriver INFO geckodriver 0.21.0 +1530276872503 geckodriver INFO Listening on 127.0.0.1:56297 +1530276873506 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ja9qOY3zMyuY" +1530276876672 Marionette INFO Listening on port 42105 +1530276876715 Marionette WARN TLS certificate errors will be ignored for this session +1530276876781 geckodriver INFO geckodriver 0.21.0 +1530276876785 geckodriver INFO Listening on 127.0.0.1:53143 +1530276877547 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530276877786 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.j0TOCIVC5euz" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530276881562 Marionette INFO Listening on port 34189 +1530276881597 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530277208774 geckodriver INFO geckodriver 0.21.0 +1530277208777 geckodriver INFO Listening on 127.0.0.1:44703 +1530277209781 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.oIdyFb16xoI9" +1530277212818 Marionette INFO Listening on port 45629 +1530277212903 Marionette WARN TLS certificate errors will be ignored for this session +1530277212941 geckodriver INFO geckodriver 0.21.0 +1530277212945 geckodriver INFO Listening on 127.0.0.1:41209 +1530277213946 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wXHTAXKfOrG4" +1530277214556 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530277217625 Marionette INFO Listening on port 43649 +1530277217656 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 530: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530277735182 geckodriver INFO geckodriver 0.21.0 +1530277735186 geckodriver INFO Listening on 127.0.0.1:52125 +1530277736190 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.fTY4Vpea4pzL" +1530277739075 Marionette INFO Listening on port 39239 +1530277739115 Marionette WARN TLS certificate errors will be ignored for this session +1530277739187 geckodriver INFO geckodriver 0.21.0 +1530277739192 geckodriver INFO Listening on 127.0.0.1:46747 +1530277739744 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530277740193 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Q23jEw9S063y" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530277743738 Marionette INFO Listening on port 46337 +1530277743802 Marionette WARN TLS certificate errors will be ignored for this session +1530277948369 geckodriver INFO geckodriver 0.21.0 +1530277948373 geckodriver INFO Listening on 127.0.0.1:42741 +1530277949378 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.3ghNXuXnuYu6" +1530277952259 Marionette INFO Listening on port 39661 +1530277952293 Marionette WARN TLS certificate errors will be ignored for this session +1530277952337 geckodriver INFO geckodriver 0.21.0 +1530277952341 geckodriver INFO Listening on 127.0.0.1:35941 +1530277952969 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530277953343 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.4WKvGex87jf3" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530277956517 Marionette INFO Listening on port 42387 +1530277956552 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530278072565 geckodriver INFO geckodriver 0.21.0 +1530278072568 geckodriver INFO Listening on 127.0.0.1:48651 +1530278073573 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.WwS7uvqRdmtp" +1530278076452 Marionette INFO Listening on port 37069 +1530278076483 Marionette WARN TLS certificate errors will be ignored for this session +1530278076554 geckodriver INFO geckodriver 0.21.0 +1530278076558 geckodriver INFO Listening on 127.0.0.1:53319 +1530278077561 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.6Ymq4UXPZaGK" +1530278081904 Marionette INFO Listening on port 37715 +1530278081972 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530278119419 geckodriver INFO geckodriver 0.21.0 +1530278119423 geckodriver INFO Listening on 127.0.0.1:52471 +1530278120427 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.gIuWlJ1fALFm" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530278123525 Marionette INFO Listening on port 45695 +1530278123546 Marionette WARN TLS certificate errors will be ignored for this session +1530278123583 geckodriver INFO geckodriver 0.21.0 +1530278123587 geckodriver INFO Listening on 127.0.0.1:55151 +1530278124589 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.VUDv3F86isMu" +1530278125147 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530278128452 Marionette INFO Listening on port 46707 +1530278128501 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530278225460 geckodriver INFO geckodriver 0.21.0 +1530278225463 geckodriver INFO Listening on 127.0.0.1:55279 +1530278226468 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.7BnnPtMAAmiP" +1530278229384 Marionette INFO Listening on port 46525 +1530278229478 Marionette WARN TLS certificate errors will be ignored for this session +1530278229518 geckodriver INFO geckodriver 0.21.0 +1530278229522 geckodriver INFO Listening on 127.0.0.1:33391 +1530278230524 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.COn1x2pWjDVm" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530278234351 Marionette INFO Listening on port 38945 +1530278234435 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/communities/, line 356: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/community-view/2/, line 455: ReferenceError: None is not defined +1530278433712 geckodriver INFO geckodriver 0.21.0 +1530278433715 geckodriver INFO Listening on 127.0.0.1:34013 +1530278434719 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.sdWyDaMaDMzD" +1530278437655 Marionette INFO Listening on port 39663 +1530278437736 Marionette WARN TLS certificate errors will be ignored for this session +1530278437778 geckodriver INFO geckodriver 0.21.0 +1530278437782 geckodriver INFO Listening on 127.0.0.1:47809 +1530278438784 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.VM22N1raKMPm" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530278442728 Marionette INFO Listening on port 32935 +1530278442795 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 372: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/communities/, line 356: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/community-view/2/, line 455: ReferenceError: None is not defined +1530279031764 geckodriver INFO geckodriver 0.21.0 +1530279031768 geckodriver INFO Listening on 127.0.0.1:35815 +1530279032770 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.XytdziTbpyHv" +1530279035828 Marionette INFO Listening on port 41057 +1530279035887 Marionette WARN TLS certificate errors will be ignored for this session +1530279035924 geckodriver INFO geckodriver 0.21.0 +1530279035928 geckodriver INFO Listening on 127.0.0.1:59815 +1530279036930 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.MRp6o4js1ofo" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530279041479 Marionette INFO Listening on port 34311 +1530279041544 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530332085454 geckodriver INFO geckodriver 0.21.0 +1530332085509 geckodriver INFO Listening on 127.0.0.1:37413 +1530332086484 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.RrwnZAJgBxKO" +1530332090287 Marionette INFO Listening on port 39347 +1530332090314 Marionette WARN TLS certificate errors will be ignored for this session +1530332090352 geckodriver INFO geckodriver 0.21.0 +1530332090356 geckodriver INFO Listening on 127.0.0.1:35099 +1530332090732 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530332091358 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.G4lc2NlLKX51" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530332094842 Marionette INFO Listening on port 46103 +1530332094870 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530332386497 geckodriver INFO geckodriver 0.21.0 +1530332386500 geckodriver INFO Listening on 127.0.0.1:42463 +1530332387505 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.W7meu3QpVkNZ" +1530332390350 Marionette INFO Listening on port 35377 +1530332390429 Marionette WARN TLS certificate errors will be ignored for this session +1530332390473 geckodriver INFO geckodriver 0.21.0 +1530332390477 geckodriver INFO Listening on 127.0.0.1:51927 +1530332391363 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530332391476 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ORYuwdb0d9Ja" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530332395196 Marionette INFO Listening on port 39205 +1530332395287 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530332476547 geckodriver INFO geckodriver 0.21.0 +1530332476551 geckodriver INFO Listening on 127.0.0.1:54393 +1530332477556 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.inS9uvJ4XdKr" +1530332480545 Marionette INFO Listening on port 35145 +1530332480571 Marionette WARN TLS certificate errors will be ignored for this session +1530332480637 geckodriver INFO geckodriver 0.21.0 +1530332480641 geckodriver INFO Listening on 127.0.0.1:42797 +1530332481641 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.BSGHsV49Vyp1" +1530332485706 Marionette INFO Listening on port 38667 +1530332485756 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530332588709 geckodriver INFO geckodriver 0.21.0 +1530332588713 geckodriver INFO Listening on 127.0.0.1:36831 +1530332589717 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.dKUhT8RjgMQH" +1530332592506 Marionette INFO Listening on port 45197 +1530332592527 Marionette WARN TLS certificate errors will be ignored for this session +1530332592568 geckodriver INFO geckodriver 0.21.0 +1530332592572 geckodriver INFO Listening on 127.0.0.1:38069 +1530332593494 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530332593573 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ewB6RF8adPWg" +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530332596797 Marionette INFO Listening on port 36307 +1530332596883 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530332806448 geckodriver INFO geckodriver 0.21.0 +1530332806452 geckodriver INFO Listening on 127.0.0.1:58787 +1530332807456 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.z8IwKqECuLjS" +1530332810417 Marionette INFO Listening on port 37449 +1530332810469 Marionette WARN TLS certificate errors will be ignored for this session +1530332810512 geckodriver INFO geckodriver 0.21.0 +1530332810516 geckodriver INFO Listening on 127.0.0.1:33209 +1530332811518 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.nr6bKQrWXCZj" +1530332815918 Marionette INFO Listening on port 46747 +1530332815938 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530334289481 geckodriver INFO geckodriver 0.21.0 +1530334289484 geckodriver INFO Listening on 127.0.0.1:60793 +1530334290489 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.G5WwTXsv6NuY" +1530334293426 Marionette INFO Listening on port 43613 +1530334293510 Marionette WARN TLS certificate errors will be ignored for this session +1530334293549 geckodriver INFO geckodriver 0.21.0 +1530334293553 geckodriver INFO Listening on 127.0.0.1:39745 +1530334293922 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530334294556 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.A1uSMwOgkfYJ" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530334297900 Marionette INFO Listening on port 38491 +1530334297979 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530334500062 geckodriver INFO geckodriver 0.21.0 +1530334500065 geckodriver INFO Listening on 127.0.0.1:49615 +1530334501070 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.W9nICZDVh31A" +1530334504417 Marionette INFO Listening on port 35691 +1530334504480 Marionette WARN TLS certificate errors will be ignored for this session +1530334504514 geckodriver INFO geckodriver 0.21.0 +1530334504518 geckodriver INFO Listening on 127.0.0.1:51929 +1530334505519 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.pXpEtw0Ed3P2" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530334509475 Marionette INFO Listening on port 37703 +1530334509554 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530334657588 geckodriver INFO geckodriver 0.21.0 +1530334657592 geckodriver INFO Listening on 127.0.0.1:40219 +1530334658593 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.x3sDX3V2R0qs" +1530334661955 Marionette INFO Listening on port 41419 +1530334662003 Marionette WARN TLS certificate errors will be ignored for this session +1530334662036 geckodriver INFO geckodriver 0.21.0 +1530334662040 geckodriver INFO Listening on 127.0.0.1:58771 +1530334663042 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.PVS9CTzVtKeW" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530334667560 Marionette INFO Listening on port 33909 +1530334667656 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530334829793 geckodriver INFO geckodriver 0.21.0 +1530334829796 geckodriver INFO Listening on 127.0.0.1:44645 +1530334830802 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.tlWjeKqvxJQf" +1530334833651 Marionette INFO Listening on port 40595 +1530334833727 Marionette WARN TLS certificate errors will be ignored for this session +1530334833766 geckodriver INFO geckodriver 0.21.0 +1530334833771 geckodriver INFO Listening on 127.0.0.1:52201 +1530334834772 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.hQ7wguLRv0gJ" +1530334838674 Marionette INFO Listening on port 39453 +1530334838685 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530334964917 geckodriver INFO geckodriver 0.21.0 +1530334964921 geckodriver INFO Listening on 127.0.0.1:36725 +1530334965925 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qH3DsdNM7CTL" +1530334969114 Marionette INFO Listening on port 41479 +1530334969138 Marionette WARN TLS certificate errors will be ignored for this session +1530334969177 geckodriver INFO geckodriver 0.21.0 +1530334969182 geckodriver INFO Listening on 127.0.0.1:38211 +1530334969701 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530334970184 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.6pQYHJv5ENYJ" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530334973480 Marionette INFO Listening on port 43663 +1530334973496 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530335296593 geckodriver INFO geckodriver 0.21.0 +1530335296597 geckodriver INFO Listening on 127.0.0.1:48727 +1530335297601 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.40lS8ExLsay9" +1530335300923 Marionette INFO Listening on port 38023 +1530335301012 Marionette WARN TLS certificate errors will be ignored for this session +1530335301053 geckodriver INFO geckodriver 0.21.0 +1530335301057 geckodriver INFO Listening on 127.0.0.1:54825 +1530335302059 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.goi0oGHh5Ic2" +1530335306353 Marionette INFO Listening on port 33615 +1530335306372 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530335549979 geckodriver INFO geckodriver 0.21.0 +1530335549982 geckodriver INFO Listening on 127.0.0.1:33175 +1530335550986 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.4oulHozfEhK9" +1530335553990 Marionette INFO Listening on port 34287 +1530335553997 Marionette WARN TLS certificate errors will be ignored for this session +1530335554042 geckodriver INFO geckodriver 0.21.0 +1530335554046 geckodriver INFO Listening on 127.0.0.1:52737 +1530335555048 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.UtNqOyiJ5xhf" +1530335559001 Marionette INFO Listening on port 43901 +1530335559065 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530335678599 geckodriver INFO geckodriver 0.21.0 +1530335678603 geckodriver INFO Listening on 127.0.0.1:53895 +1530335679608 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.FOYJRYfw5AKG" +1530335682666 Marionette INFO Listening on port 45153 +1530335682719 Marionette WARN TLS certificate errors will be ignored for this session +1530335682753 geckodriver INFO geckodriver 0.21.0 +1530335682757 geckodriver INFO Listening on 127.0.0.1:60273 +1530335683142 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530335683760 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.rnuZd8UHBgzQ" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530335687223 Marionette INFO Listening on port 42081 +1530335687280 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530336467244 geckodriver INFO geckodriver 0.21.0 +1530336467248 geckodriver INFO Listening on 127.0.0.1:48057 +1530336468252 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.QHN7gg2jDVX5" +1530336471120 Marionette INFO Listening on port 41129 +1530336471164 Marionette WARN TLS certificate errors will be ignored for this session +1530336471198 geckodriver INFO geckodriver 0.21.0 +1530336471202 geckodriver INFO Listening on 127.0.0.1:37337 +1530336472204 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.n4N6u03lqXys" +1530336472847 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530336476090 Marionette INFO Listening on port 41089 +1530336476119 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530337230508 geckodriver INFO geckodriver 0.21.0 +1530337230511 geckodriver INFO Listening on 127.0.0.1:41585 +1530337231516 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.3HkIsIS57Hb2" +1530337234257 Marionette INFO Listening on port 32791 +1530337234335 Marionette WARN TLS certificate errors will be ignored for this session +1530337234375 geckodriver INFO geckodriver 0.21.0 +1530337234380 geckodriver INFO Listening on 127.0.0.1:52307 +1530337235380 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.EoVQHtOswYdi" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530337239602 Marionette INFO Listening on port 44643 +1530337239695 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530337344982 geckodriver INFO geckodriver 0.21.0 +1530337344986 geckodriver INFO Listening on 127.0.0.1:60479 +1530337345990 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.bE2fFKS5tUM2" +1530337348888 Marionette INFO Listening on port 44525 +1530337348900 Marionette WARN TLS certificate errors will be ignored for this session +1530337348938 geckodriver INFO geckodriver 0.21.0 +1530337348942 geckodriver INFO Listening on 127.0.0.1:59183 +1530337349945 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.23uu1PpIysa1" +1530337353939 Marionette INFO Listening on port 36575 +1530337353958 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530339059381 geckodriver INFO geckodriver 0.21.0 +1530339059385 geckodriver INFO Listening on 127.0.0.1:59539 +1530339060390 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.bqLMkvkUESVm" +1530339063458 Marionette INFO Listening on port 39685 +1530339063501 Marionette WARN TLS certificate errors will be ignored for this session +1530339063537 geckodriver INFO geckodriver 0.21.0 +1530339063541 geckodriver INFO Listening on 127.0.0.1:58035 +1530339063841 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530339064543 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.jesrD1ecwTiM" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530339068085 Marionette INFO Listening on port 37465 +1530339068162 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530339376982 geckodriver INFO geckodriver 0.21.0 +1530339376985 geckodriver INFO Listening on 127.0.0.1:34043 +1530339377991 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.fzFRTRbfC3tf" +1530339380958 Marionette INFO Listening on port 41723 +1530339381005 Marionette WARN TLS certificate errors will be ignored for this session +1530339381039 geckodriver INFO geckodriver 0.21.0 +1530339381043 geckodriver INFO Listening on 127.0.0.1:41175 +1530339382045 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.F6GqYu8FZwb1" +1530339385994 Marionette INFO Listening on port 36687 +1530339386055 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +1530339863558 geckodriver INFO geckodriver 0.21.0 +1530339863562 geckodriver INFO Listening on 127.0.0.1:42505 +1530339864567 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.M7NxAqqXb6rZ" +1530339867444 Marionette INFO Listening on port 38689 +1530339867485 Marionette WARN TLS certificate errors will be ignored for this session +1530339867524 geckodriver INFO geckodriver 0.21.0 +1530339867528 geckodriver INFO Listening on 127.0.0.1:38501 +1530339868528 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.gCShfJtvOhyd" +1530339868528 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530339871985 Marionette INFO Listening on port 35907 +1530339872040 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530339982667 geckodriver INFO geckodriver 0.21.0 +1530339982671 geckodriver INFO Listening on 127.0.0.1:48667 +1530339983675 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.xAJiY2dwtOlh" +1530339987196 Marionette INFO Listening on port 46479 +1530339987239 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +JavaScript error: resource://gre/modules/JSONFile.jsm, line 159: Error: Data is not ready. +JavaScript error: resource://gre/modules/JSONFile.jsm, line 159: Error: Data is not ready. +JavaScript error: resource://gre/modules/JSONFile.jsm, line 159: Error: Data is not ready. +JavaScript error: resource://pdf.js/PdfJs.jsm, line 247: NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS: [JavaScript Error: "Data is not ready." {file: "resource://gre/modules/JSONFile.jsm" line: 159}]'[JavaScript Error: "Data is not ready." {file: "resource://gre/modules/JSONFile.jsm" line: 159}]' when calling method: [nsIHandlerService::store] +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340068866 geckodriver INFO geckodriver 0.21.0 +1530340068869 geckodriver INFO Listening on 127.0.0.1:39891 +1530340069874 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.McjsS1mGzaTi" +1530340072714 Marionette INFO Listening on port 46699 +1530340072800 Marionette WARN TLS certificate errors will be ignored for this session +1530340072904 geckodriver INFO geckodriver 0.21.0 +1530340072908 geckodriver INFO Listening on 127.0.0.1:41843 +1530340073908 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.3tUhmdm3cYSf" +1530340074069 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340077283 Marionette INFO Listening on port 37073 +1530340077325 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530340261314 geckodriver INFO geckodriver 0.21.0 +1530340261318 geckodriver INFO Listening on 127.0.0.1:46359 +1530340262322 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.1R6DBfYp0c4N" +1530340265315 Marionette INFO Listening on port 34837 +1530340265336 Marionette WARN TLS certificate errors will be ignored for this session +1530340265377 geckodriver INFO geckodriver 0.21.0 +1530340265381 geckodriver INFO Listening on 127.0.0.1:45435 +1530340266224 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530340266383 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.vdMlnafeSjdq" +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340269851 Marionette INFO Listening on port 41497 +1530340269905 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 557: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +1530340539176 geckodriver INFO geckodriver 0.21.0 +1530340539179 geckodriver INFO Listening on 127.0.0.1:48299 +1530340540183 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.uGukQOzUKgPS" +1530340543236 Marionette INFO Listening on port 41605 +1530340543312 Marionette WARN TLS certificate errors will be ignored for this session +1530340543349 geckodriver INFO geckodriver 0.21.0 +1530340543354 geckodriver INFO Listening on 127.0.0.1:60265 +1530340543770 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530340544355 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.qOR0mbFQJ0sf" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340548123 Marionette INFO Listening on port 43049 +1530340548169 Marionette WARN TLS certificate errors will be ignored for this session +1530340548608 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + + +###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost + +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340711330 geckodriver INFO geckodriver 0.21.0 +1530340711333 geckodriver INFO Listening on 127.0.0.1:42519 +1530340712337 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.IfezN8tYH7Ic" +1530340715262 Marionette INFO Listening on port 39179 +1530340715349 Marionette WARN TLS certificate errors will be ignored for this session +1530340715397 geckodriver INFO geckodriver 0.21.0 +1530340715400 geckodriver INFO Listening on 127.0.0.1:50655 +1530340716402 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.8KQ0csa3y0LH" +1530340716717 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530340720009 Marionette INFO Listening on port 38499 +1530340720012 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +1530341142260 geckodriver INFO geckodriver 0.21.0 +1530341142263 geckodriver INFO Listening on 127.0.0.1:42173 +1530341143269 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.cV3CL3bGTOkO" +1530341146094 Marionette INFO Listening on port 45485 +1530341146188 Marionette WARN TLS certificate errors will be ignored for this session +1530341146224 geckodriver INFO geckodriver 0.21.0 +1530341146228 geckodriver INFO Listening on 127.0.0.1:49297 +1530341147230 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.fEALA7v5DOgI" +1530341148222 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530341151236 Marionette INFO Listening on port 37757 +1530341151240 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530341194226 addons.productaddons WARN Failed downloading via XHR, status: 0, reason: error +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +1530341687511 geckodriver INFO geckodriver 0.21.0 +1530341687515 geckodriver INFO Listening on 127.0.0.1:38567 +1530341688519 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.FQmJN7Ez1hNM" +1530341691461 Marionette INFO Listening on port 37419 +1530341691538 Marionette WARN TLS certificate errors will be ignored for this session +1530341691580 geckodriver INFO geckodriver 0.21.0 +1530341691585 geckodriver INFO Listening on 127.0.0.1:36781 +1530341692584 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.yZ81lPU60Aa8" +1530341693002 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530341696116 Marionette INFO Listening on port 46535 +1530341696204 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +JavaScript error: http://127.0.0.1:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +JavaScript error: http://127.0.0.1:8000/static/assets/corporate/scripts/layout.js, line 141: TypeError: $(...).size is not a function +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530342131930 geckodriver INFO geckodriver 0.21.0 +1530342131934 geckodriver INFO Listening on 127.0.0.1:42717 +1530342132940 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.iU6uzkY1J1lw" +1530342135856 Marionette INFO Listening on port 33179 +1530342135962 Marionette WARN TLS certificate errors will be ignored for this session +1530342136015 geckodriver INFO geckodriver 0.21.0 +1530342136020 geckodriver INFO Listening on 127.0.0.1:34195 +1530342137022 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.zTdufn0mTzIN" +1530342140810 Marionette INFO Listening on port 40989 +1530342140837 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530342286596 geckodriver INFO geckodriver 0.21.0 +1530342286600 geckodriver INFO Listening on 127.0.0.1:38241 +1530342287605 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.42R3KPnbM9uj" +1530342290646 Marionette INFO Listening on port 44477 +1530342290738 Marionette WARN TLS certificate errors will be ignored for this session +1530342290782 geckodriver INFO geckodriver 0.21.0 +1530342290787 geckodriver INFO Listening on 127.0.0.1:53085 +1530342291547 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +console.error: (new Error("Connection closed before committing the transaction.", "resource://gre/modules/Sqlite.jsm", 614)) +1530342291787 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.03V6rFekXerL" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530342295193 Marionette INFO Listening on port 44819 +1530342295213 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2F127.0.0.1%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530342725726 geckodriver INFO geckodriver 0.21.0 +1530342725730 geckodriver INFO Listening on 127.0.0.1:49655 +1530342726735 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.znt5LdwVe0Pr" +1530342729674 Marionette INFO Listening on port 45185 +1530342729744 Marionette WARN TLS certificate errors will be ignored for this session +1530342729813 geckodriver INFO geckodriver 0.21.0 +1530342729818 geckodriver INFO Listening on 127.0.0.1:39063 +1530342730818 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.nMGhgVXfns2I" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530342735018 Marionette INFO Listening on port 43415 +1530342735036 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530342885757 geckodriver INFO geckodriver 0.21.0 +1530342885760 geckodriver INFO Listening on 127.0.0.1:39401 +1530342886765 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.bm0Tcv4RIF3f" +1530342889882 Marionette INFO Listening on port 45305 +1530342889985 Marionette WARN TLS certificate errors will be ignored for this session +1530342890018 geckodriver INFO geckodriver 0.21.0 +1530342890021 geckodriver INFO Listening on 127.0.0.1:33919 +1530342891020 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.JQoGoUUbLCXr" +1530342895078 Marionette INFO Listening on port 34627 +1530342895135 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530343225394 geckodriver INFO geckodriver 0.21.0 +1530343225398 geckodriver INFO Listening on 127.0.0.1:39121 +1530343226404 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.WIAWzKbnkaSV" +1530343229401 Marionette INFO Listening on port 41013 +1530343229431 Marionette WARN TLS certificate errors will be ignored for this session +1530343229473 geckodriver INFO geckodriver 0.21.0 +1530343229478 geckodriver INFO Listening on 127.0.0.1:36537 +1530343230479 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.nxP6SYJZSsuW" +1530343234525 Marionette INFO Listening on port 37337 +1530343234590 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +1530343676277 geckodriver INFO geckodriver 0.21.0 +1530343676281 geckodriver INFO Listening on 127.0.0.1:44905 +1530343677286 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.JOUyxgNlFJ57" +1530343680282 Marionette INFO Listening on port 39567 +1530343680305 Marionette WARN TLS certificate errors will be ignored for this session +1530343680349 geckodriver INFO geckodriver 0.21.0 +1530343680353 geckodriver INFO Listening on 127.0.0.1:46101 +1530343681355 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.717dyM3SYFXC" +1530343685269 Marionette INFO Listening on port 46145 +1530343685366 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +1530346981167 geckodriver INFO geckodriver 0.21.0 +1530346981171 geckodriver INFO Listening on 127.0.0.1:43385 +1530346982176 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ZSK3ZCQzQZDp" +1530346984914 Marionette INFO Listening on port 40713 +1530346984993 Marionette WARN TLS certificate errors will be ignored for this session +1530346985034 geckodriver INFO geckodriver 0.21.0 +1530346985038 geckodriver INFO Listening on 127.0.0.1:39555 +1530346986040 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.JRmkWHyMdigd" +1530346986974 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530346989840 Marionette INFO Listening on port 44783 +1530346989859 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530347098588 geckodriver INFO geckodriver 0.21.0 +1530347098591 geckodriver INFO Listening on 127.0.0.1:46925 +1530347099595 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wh9QfI2SjV6n" +1530347102742 Marionette INFO Listening on port 40247 +1530347102804 Marionette WARN TLS certificate errors will be ignored for this session +1530347102838 geckodriver INFO geckodriver 0.21.0 +1530347102842 geckodriver INFO Listening on 127.0.0.1:35701 +1530347103845 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Ef1O6Fv3lLTL" +1530347107759 Marionette INFO Listening on port 45983 +1530347107856 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +JavaScript error: http://127.0.0.1:8000/, line 584: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/login/?next=/, line 362: ReferenceError: None is not defined +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530347336167 geckodriver INFO geckodriver 0.21.0 +1530347336170 geckodriver INFO Listening on 127.0.0.1:44145 +1530347337172 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.K5efxpK8wUTm" +1530347340140 Marionette INFO Listening on port 38511 +1530347340182 Marionette WARN TLS certificate errors will be ignored for this session +1530347340232 geckodriver INFO geckodriver 0.21.0 +1530347340236 geckodriver INFO Listening on 127.0.0.1:49579 +1530347341239 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.rGCE7pFJ53OQ" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530347345240 Marionette INFO Listening on port 43289 +1530347345261 Marionette WARN TLS certificate errors will be ignored for this session +1530347437925 geckodriver INFO geckodriver 0.21.0 +1530347437929 geckodriver INFO Listening on 127.0.0.1:33799 +1530347438935 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.UxFThej67Zn3" +1530347441880 Marionette INFO Listening on port 37813 +1530347441960 Marionette WARN TLS certificate errors will be ignored for this session +1530347442003 geckodriver INFO geckodriver 0.21.0 +1530347442007 geckodriver INFO Listening on 127.0.0.1:57227 +1530347443008 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.CnETjI6Nrk47" +1530347446876 Marionette INFO Listening on port 33639 +1530347446921 Marionette WARN TLS certificate errors will be ignored for this session +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530347507518 geckodriver INFO geckodriver 0.21.0 +1530347507521 geckodriver INFO Listening on 127.0.0.1:36541 +1530347508526 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.HctwXMAqgCc9" +1530347511447 Marionette INFO Listening on port 42507 +1530347511535 Marionette WARN TLS certificate errors will be ignored for this session +1530347511571 geckodriver INFO geckodriver 0.21.0 +1530347511576 geckodriver INFO Listening on 127.0.0.1:35967 +1530347512189 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +1530347512575 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.iWWdYjZvkfrM" +console.error: PushService: + clearOriginData: Error clearing origin data: + UnknownError +console.error: PushService: + stateChangeProcessEnqueue: Error transitioning state + UnknownError +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530347515975 Marionette INFO Listening on port 45189 +1530347515986 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://127.0.0.1:8000/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://127.0.0.1:8000/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://127.0.0.1:8000/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530347518607 addons.xpi WARN Exception running bootstrap method shutdown on activity-stream@mozilla.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIObserverService.removeObserver]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: resource://activity-stream/lib/SnippetsFeed.jsm :: uninit :: line 185" data: no] Stack trace: uninit()@resource://activity-stream/lib/SnippetsFeed.jsm:185 +onAction()@resource://activity-stream/lib/SnippetsFeed.jsm:201 +_middleware/ jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:73 +shutdown()@resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///usr/lib/firefox/browser/features/activity-stream@mozilla.org.xpi!/bootstrap.js:169 +callBootstrapMethod()@resource://gre/modules/addons/XPIProvider.jsm:4436 +observe()@resource://gre/modules/addons/XPIProvider.jsm:2287 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping From b38643b4262cdc20d74922cbb5bcbfe9084a5b82 Mon Sep 17 00:00:00 2001 From: singhalshubh Date: Thu, 5 Jul 2018 16:44:49 +0530 Subject: [PATCH 2/2] Update README.md --- README.md | 42 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e4d8c0a..5836845 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,43 @@ # Collaboration-System-Selenium -Selenium tests for Collaboration System +# Notification-system-Testing-using-selenium
+ +1.) .env file :
+ NOTIFICATION_PORT = 7000
+ NOTIFICATION_USER = shubh,admin,raghav,ty
+ NOTIFICATION_PASSWORD = shubh
+ IP_ADDRESS= https://172.17.0.1
+ NOTIFICATION_ROLE = author,publisher,admin
+ NOTIFICATION_GROUP_ROLE = author,publisher,group admin

+ +2.) Order of testing is mentioned in the report of Notification system Report for system.
+
+3.) Changes in id
+ The "left-side" needs to be searched and insert id = “right-side”
+ Unsubscribe - Unsubscribe
+ Yes - Yes
+ Save Changes - savechanges
+ transition.to_state.name- id =”publish” but at 212 line id = “Visible”
+ Reject - reject
+ Update - update
+ Remove - remove
+
+ The link for the comparison is : https://github.com/singhalshubh/hacker-1/pull/1/files
+ +4.) Roles:
+There are 4 users in the system : shubh,admin,raghav,ty.
+Password is same for all i.e. “shubh”
+Shubh - Community-admin,group-admin
+Admin - Community-admin,group-admin
+Raghav - Community-publisher,group-publisher
+Ty - author for both group and community.

+Community :
+There are 2 communities and the testing is done on the “second community” always.
+The articles 5,6 are drafts and goes till the published state.
+The articles 7 is just visible
+Article 9,13 is draft in community
+Article 12 is visible.

+Group :
+The group formed is only 1.
+8,10,11 article is in the group.
+