diff --git a/event-logs-testing/.env b/event-logs-testing/.env new file mode 100644 index 0000000..65b931f --- /dev/null +++ b/event-logs-testing/.env @@ -0,0 +1,6 @@ +EVENT_LOGS_USER=root +EVENT_LOGS_USER_ID=1 +EVENT_LOGS_PASSWORD=pass1234 +IP_ADDRESS=localhost +EVENT_LOGS_PORT=8000 +EVENT_API_TOKEN=e1eebb20fd4f01d6f733cc6d355b45e9fb1ed78d \ No newline at end of file diff --git a/event-logs-testing/article_create.py b/event-logs-testing/article_create.py new file mode 100644 index 0000000..dd98f09 --- /dev/null +++ b/event-logs-testing/article_create.py @@ -0,0 +1,64 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + print("Note that user should be a member of community that you select.") + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.community_id = raw_input("Enter a community id: ") + self.article_name = raw_input("Enter article name: ") + + def test_article_create(self): + + driver = webdriver.Firefox() + driver.maximize_window() # For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + + url_api = self.url_basic + 'logapi/event/article/create/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/' + self.community_id + '/"]').click() + driver.find_element_by_xpath("//button [@type='button' and @data-target='#modalCreate']").click() + driver.find_element_by_xpath("//button [@type='button' and @data-target='#modalCreateArticle']").click() + driver.find_element_by_id("exampleCheck1").click() + driver.find_element_by_id("articleCreate").click() + title = driver.find_element_by_id("title") + title.send_keys(self.article_name) + driver.find_element_by_id("create").click() + url_api = self.url_basic + 'logapi/event/article/create/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"] == total_hits+ 1): + self.assertEqual(data[0]["event_name"], "event.article.create") + self.assertEqual(data[0]["event"]["community-id"], self.community_id) + else: + self.assertFalse(True) + + driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/article_edit.py b/event-logs-testing/article_edit.py new file mode 100644 index 0000000..f87b05a --- /dev/null +++ b/event-logs-testing/article_edit.py @@ -0,0 +1,66 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + print("Note that user should be a member of community that you select.") + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + print("Note that this community should have an article in visible state.") + self.community_id = raw_input("Enter a community id: ") + self.article_id = raw_input("Enter article id that belongs to above community: ") + self.article_name = raw_input("Enter new article name (will be appended to title): ") + + + def test_article_edit(self): + url_api = self.url_basic + 'logapi/event/article/edit/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + driver = webdriver.Firefox() + driver.maximize_window() # For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(self.url_basic + "login/?next=/") + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/' + str(self.community_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/' + str(self.community_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/' + str(self.community_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/' + str(self.article_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/' + str(self.article_id) + '/"]').click() + title = driver.find_element_by_id("title") + title.send_keys(self.article_name) + driver.find_element_by_xpath("//button [@type='submit' and @value='save']").click() + url_api = self.url_basic + 'logapi/event/article/edit/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"] == total_hits+ 1): + self.assertEqual(data[0]["event_name"], "event.article.edit") + self.assertEqual(data[0]["event"]["article-id"], self.article_id) + else: + self.assertFalse(True) + + driver.quit() + + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/article_published.py b/event-logs-testing/article_published.py new file mode 100644 index 0000000..f0045c1 --- /dev/null +++ b/event-logs-testing/article_published.py @@ -0,0 +1,62 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + print("Note that user should be a publisher of community that you select.") + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + print("Note that this community should have an article in publishable state.") + self.community_id = raw_input("Enter a community id: ") + self.article_id = raw_input("Enter article id that belongs to above community: ") + + def test_article_published(self): + url_api = self.url_basic + 'logapi/event/article/published/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + driver = webdriver.Firefox() + driver.maximize_window() # For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(self.url_basic + "login/?next=/") + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/' + str(self.community_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/' + str(self.community_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/' + str(self.community_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/' + str(self.article_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/' + str(self.article_id) + '/"]').click() + driver.find_element_by_xpath("//button [@type='submit' and @value='publish']").click() + url_api = self.url_basic + 'logapi/event/article/published/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"] == total_hits+ 1): + self.assertEqual(data[0]["event_name"], "event.article.published") + self.assertEqual(data[0]["event"]["article-id"], self.article_id) + else: + self.assertFalse(True) + + driver.quit() + + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/article_stateChanged.py b/event-logs-testing/article_stateChanged.py new file mode 100644 index 0000000..bf12433 --- /dev/null +++ b/event-logs-testing/article_stateChanged.py @@ -0,0 +1,64 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + print("Note that user should be a member of community that you select.") + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + print("Note that this community should have an article in visible state.") + self.community_id = raw_input("Enter a community id: ") + self.article_id = raw_input("Enter article id that belongs to above community: ") + + def test_article_stateChanged(self): + url_api = self.url_basic + 'logapi/event/article/statusChanged/' + + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + driver = webdriver.Firefox() + driver.maximize_window() # For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(self.url_basic + "login/?next=/") + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/' + str(self.community_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/' + str(self.community_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/' + str(self.community_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/' + str(self.article_id) + '/"]').click() + driver.find_element_by_xpath('//a [@href="/article-edit/' + str(self.article_id) + '/"]').click() + driver.find_element_by_xpath("//button [@type='submit' and @value='publishable']").click() + url_api = self.url_basic + 'logapi/event/article/statusChanged/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"] == total_hits+ 1): + self.assertEqual(data[0]["event_name"], "event.article.statusChanged") + self.assertEqual(data[0]["event"]["article-id"], self.article_id) + self.assertEqual(data[0]["event"]["status"], "publishable") + else: + self.assertFalse(True) + + driver.quit() + + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/article_view.py b/event-logs-testing/article_view.py new file mode 100644 index 0000000..e375ad0 --- /dev/null +++ b/event-logs-testing/article_view.py @@ -0,0 +1,52 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.article_id = input("Enter article id: ") + + def test_article_view(self): + url_api = self.url_basic + 'logapi/event/article/view/' + str(self.article_id) + '/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + driver = webdriver.Firefox() + driver.maximize_window() # For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(self.url_basic + "login/?next=/") + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/articles/"]').click() + driver.find_element_by_xpath('//a [@href="/article-view/' + str(self.article_id) + '/"]').click() + url_api = self.url_basic + 'logapi/event/article/view/' + str(self.article_id) + '/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"] == total_hits +1): + self.assertEqual(data[0]["event_name"], "event.article.view") + self.assertEqual(data[0]["event"]["article-id"], str(self.article_id)) + else: + self.assertFalse(True) + + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/community_create.py b/event-logs-testing/community_create.py new file mode 100644 index 0000000..7b93e5b --- /dev/null +++ b/event-logs-testing/community_create.py @@ -0,0 +1,78 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.comm_name = raw_input("Enter name of community: ") + self.comm_tag = raw_input("Enter a tag line to community: ") + self.comm_category = raw_input("Enter category of your community: ") + self.comm_username = raw_input("Enter username of community creator: ") + self.comm_image = raw_input("Enter path to community image: ") + + def test_community_create(self): + url_api = self.url_basic + 'logapi/event/community/create/' + + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(self.url_basic + "login/?next=/") + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + + driver.get(self.url_basic+"create_community/") + elem = driver.find_element_by_id("name") + elem.send_keys(self.comm_name) + + elem = driver.find_element_by_id("tag_line") + elem.send_keys(self.comm_tag) + + elem = driver.find_element_by_id("category") + elem.send_keys(self.comm_category) + + elem = driver.find_element_by_id("username") + elem.send_keys(self.comm_username) + + elem = driver.find_element_by_id("community_image") + elem.send_keys(self.comm_image) + + driver.find_element_by_id("create").click() + + url_api = self.url_basic + 'logapi/event/community/create/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.community.create") + self.assertEqual(data[0]["event"]["community-name"], self.comm_name) + self.assertEqual(data[0]["event"]["admin-username"], self.comm_username) + else: + self.assertFalse(True) + + driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/community_subscribe.py b/event-logs-testing/community_subscribe.py new file mode 100644 index 0000000..2e2906a --- /dev/null +++ b/event-logs-testing/community_subscribe.py @@ -0,0 +1,59 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + print("Note that user should not be a part of community: ") + self.comm_id = raw_input("Enter id of community which the user will join: ") + + def test_community_subscribe(self): + + url_api = self.url_basic + 'logapi/event/community/subscribe/' + self.comm_id + '/' + + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/'+ self.comm_id +'/"]').click() + driver.find_element_by_id("join-us").click() + url_api = self.url_basic + 'logapi/event/community/subscribe/' + self.comm_id + '/' + result = requests.get(url_api, headers = self.headers).json() + + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.community.subscribe") + self.assertEqual(data[0]["event"]["community-id"], self.comm_id) + else: + self.assertFalse(True) + + driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/community_unsubscribe.py b/event-logs-testing/community_unsubscribe.py new file mode 100644 index 0000000..95f154e --- /dev/null +++ b/event-logs-testing/community_unsubscribe.py @@ -0,0 +1,61 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + + +class test(unittest.TestCase): + + def setUp(self): + print("Note that user should be a part of community: ") + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.comm_id = raw_input("Enter id of community which the user will leave: ") + + def test_community_unsubscribe(self): + url_api = self.url_basic + 'logapi/event/community/unsubscribe/' + self.comm_id + '/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() # For maximizing windowsignup + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath("//button [@type='button' and @data-target='#exampleModal']").click() + driver.find_element_by_id("communityUnsubscribe").click() + + url_api = self.url_basic + 'logapi/event/community/unsubscribe/' + self.comm_id + '/' + + result = requests.get(url_api, headers = self.headers).json() + + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"] == total_hits + 1): + self.assertEqual(data[0]["event_name"], "event.community.unsubscribe") + self.assertEqual(data[0]["event"]["community-id"], self.comm_id) + else: + self.assertFalse(True) + + driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/community_view.py b/event-logs-testing/community_view.py new file mode 100644 index 0000000..ad6d05b --- /dev/null +++ b/event-logs-testing/community_view.py @@ -0,0 +1,53 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.community_id = input("Enter community id: ") + + def test_community_view(self): + url_api = self.url_basic + 'logapi/event/community/view/' + str(self.community_id) + '/' + result = requests.get(url_api, headers=self.headers).json() + new_result = {} + for key, value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + driver = webdriver.Firefox() + driver.maximize_window() # For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + driver.get(self.url_basic + "login/?next=/") + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/' + str(self.community_id) + '/"]').click() + url_api = self.url_basic + 'logapi/event/community/view/' + str(self.community_id) + '/' + result = requests.get(url_api, headers=self.headers).json() + new_result = {} + for key, value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"] == total_hits + 1): + self.assertEqual(data[0]["event_name"], "event.community.view") + self.assertEqual(data[0]["event"]["community-id"], str(self.community_id)) + else: + self.assertFalse(True) + + driver.quit() + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/event-logs-testing/content_view.py b/event-logs-testing/content_view.py new file mode 100644 index 0000000..340ab6e --- /dev/null +++ b/event-logs-testing/content_view.py @@ -0,0 +1,54 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.comm_id = raw_input("Enter Community id: ") + + def test_content_view(self): + url_api = self.url_basic + 'logapi/event/content/view/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/'+ self.comm_id +'/"]').click() + + url_api = self.url_basic + 'logapi/event/content/view/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.content.view") + self.assertEqual(data[0]["event"]["community-id"], self.comm_id) + + driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/course_create.py b/event-logs-testing/course_create.py new file mode 100644 index 0000000..a13302e --- /dev/null +++ b/event-logs-testing/course_create.py @@ -0,0 +1,63 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + print("Note that user should be a member of community that you select.") + self.community_id = raw_input("Enter a community id: ") + self.course_name = raw_input("Enter course name: ") + + def test_course_create(self): + url_api = self.url_basic + 'logapi/event/course/create/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() # For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/' + self.community_id + '/"]').click() + driver.find_element_by_xpath("//button [@type='button' and @data-target='#modalCreate']").click() + driver.find_element_by_xpath("//button [@type='button' and @data-target='#modalCreateCourse']").click() + driver.find_element_by_id("exampleCheck3").click() + driver.find_element_by_id("courseCreate").click() + title = driver.find_element_by_id("name") + title.send_keys(self.course_name) + driver.find_element_by_id("course_create").click() + + url_api = self.url_basic + 'logapi/event/course/create/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"] == total_hits+ 1): + self.assertEqual(data[0]["event_name"], "event.course.create") + self.assertEqual(data[0]["event"]["community-id"], self.community_id) + self.assertEqual(data[0]["event"]["course-name"], self.course_name) + + driver.quit() + + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/course_edit.py b/event-logs-testing/course_edit.py new file mode 100644 index 0000000..5e8e81d --- /dev/null +++ b/event-logs-testing/course_edit.py @@ -0,0 +1,65 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user_id = config("EVENT_LOGS_USER_ID") + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.comm_id = raw_input("Enter Community id: ") + self.course_id = raw_input("Enter course id: ") + self.topic_name = raw_input("Enter topic name: ") + + def test_course_edit(self): + url_api = self.url_basic + 'logapi/event/course/edit/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/course-view/'+ self.course_id +'/"]').click() + + driver.find_element_by_xpath('//a [@href="/course-edit/'+ self.course_id +'/"]').click() + + elem = driver.find_element_by_id("id_name") + elem.send_keys(self.topic_name) + + driver.find_element_by_id("save_id").click() + + url_api = self.url_basic + 'logapi/event/course/edit/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.course.edit") + self.assertEqual(data[0]["event"]["user-id"], int(self.user_id)) + + driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/course_manage.py b/event-logs-testing/course_manage.py new file mode 100644 index 0000000..0c98dc7 --- /dev/null +++ b/event-logs-testing/course_manage.py @@ -0,0 +1,76 @@ +import unittest +from selenium import webdriver +import requests +from selenium.webdriver.support.ui import Select +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.comm_id = raw_input("Enter Community id: ") + #"we will create a course and then add a yutube link to it" + self.course_id = raw_input("Enter course id: ") + self.topic_name = raw_input("Enter topic name: ") + self.youtube_url=raw_input("Enter a youtube url: ") + + def test_course_manage(self): + url_api = self.url_basic + 'logapi/event/course/manage/' + result = requests.get(url_api, headers = headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.implicitly_wait(20) #gives an implicit wait for 20 seconds + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/course-view/'+ self.course_id +'/"]').click() + + driver.find_element_by_xpath('//a [@href="/course-edit/'+ self.course_id +'/"]').click() + + elem = driver.find_element_by_id("id_name") + elem.send_keys(self.topic_name) + + driver.find_element_by_id("save_id").click() + + driver.find_element_by_xpath('//a [@href="/manage-resource/'+ self.course_id +'/"]').click() + select = Select(driver.find_element_by_id('topic')) + select.select_by_visible_text(self.topic_name) + driver.find_element_by_id("topic_type1").click() + elem = driver.find_element_by_id("topic_link") + elem.send_keys(self.youtube_url) + driver.find_element_by_id("submit1").click() + + url_api = self.url_basic + 'logapi/event/course/manage/' + result = requests.get(url_api, headers = headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.course.manage") + self.assertEqual(data[0]["event"]["user-id"], int(self.user_id)) + + driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/course_update.py b/event-logs-testing/course_update.py new file mode 100644 index 0000000..deb95b7 --- /dev/null +++ b/event-logs-testing/course_update.py @@ -0,0 +1,60 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.comm_id = raw_input("Enter Community id: ") + self.course_name = raw_input("Enter Course name: ") + self.course_id = raw_input("Enter course id: ") + + def test_course_view(self): + url_api = self.url_basic + 'logapi/event/course/update/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.implicitly_wait(20) #gives an implicit wait for 20 seconds + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/course-view/'+ self.course_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/update-course-info/'+ self.course_id +'/"]').click() + driver.find_element_by_id("update_id").click() + + url_api = self.url_basic + 'logapi/event/course/update/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.course.update") + self.assertEqual(data[0]["event"]["course-name"], self.course_name) + + driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/course_view.py b/event-logs-testing/course_view.py new file mode 100644 index 0000000..6b80eaf --- /dev/null +++ b/event-logs-testing/course_view.py @@ -0,0 +1,54 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.comm_id = raw_input("Enter Community id: ") + self.course_id = raw_input("Enter course id: ") + + def test_course_view(self): + url_api = self.url_basic + 'logapi/event/course/view/' + self.course_id + '/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/community_content/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/course-view/'+ self.course_id +'/"]').click() + url_api = self.url_basic + 'logapi/event/course/view/' + self.course_id + '/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.course.view") + self.assertEqual(data[0]["event"]["course-id"], self.course_id) + + driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/geckodriver.log b/event-logs-testing/geckodriver.log new file mode 100644 index 0000000..7615ec8 --- /dev/null +++ b/event-logs-testing/geckodriver.log @@ -0,0 +1,5455 @@ +1530027737476 geckodriver INFO geckodriver 0.19.1 +1530027737480 geckodriver INFO Listening on 127.0.0.1:46947 +1530027738588 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.CwzPjQS0goqs" +1530027742454 Marionette INFO Listening on port 32893 +1530027742509 Marionette WARN TLS certificate errors will be ignored for this session +1530027743773 geckodriver INFO geckodriver 0.19.1 +1530027743777 geckodriver INFO Listening on 127.0.0.1:34723 +1530027744894 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.3GwmRckgfTUC" +1530027749768 Marionette INFO Listening on port 37989 +1530027749807 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 551: 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 347: 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 347: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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 +1530029624195 geckodriver INFO geckodriver 0.19.1 +1530029624200 geckodriver INFO Listening on 127.0.0.1:33935 +1530029625344 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.5NG1tmAVzaRl" +1530029629250 Marionette INFO Listening on port 42547 +1530029629257 Marionette WARN TLS certificate errors will be ignored for this session +1530029629965 geckodriver INFO geckodriver 0.19.1 +1530029629972 geckodriver INFO Listening on 127.0.0.1:45389 +1530029631101 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.EgGwz5YnzT5k" +1530029636234 Marionette INFO Listening on port 34585 +1530029636325 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 551: 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 347: 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 347: 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 +[Child 1684, Chrome_ChildThread] WARNING: pipe error (22): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 1684, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +1530030733748 geckodriver INFO geckodriver 0.19.1 +1530030733753 geckodriver INFO Listening on 127.0.0.1:35729 +1530030734886 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.4DCG3a5dzEsk" +1530030738901 Marionette INFO Listening on port 38737 +1530030739009 Marionette WARN TLS certificate errors will be ignored for this session +1530030739611 geckodriver INFO geckodriver 0.19.1 +1530030739616 geckodriver INFO Listening on 127.0.0.1:41715 +1530030740739 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.G4AL5zdfTRam" +1530030746116 Marionette INFO Listening on port 40209 +1530030746158 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 551: 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 347: 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 347: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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 +[Child 3004, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 3004, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +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://localhost:8000/static/js/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +1530031387240 geckodriver INFO geckodriver 0.19.1 +1530031387246 geckodriver INFO Listening on 127.0.0.1:40505 +1530031388380 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.nZ7QrxCz8bWb" +1530031392483 Marionette INFO Listening on port 38781 +1530031392493 Marionette WARN TLS certificate errors will be ignored for this session +1530031393263 geckodriver INFO geckodriver 0.19.1 +1530031393267 geckodriver INFO Listening on 127.0.0.1:46311 +1530031394445 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.DAD5LWDftSxr" +1530031399831 Marionette INFO Listening on port 33035 +1530031399867 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 551: 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 347: 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 347: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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 +[Child 3840, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 3840, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530031514960 geckodriver INFO geckodriver 0.19.1 +1530031514964 geckodriver INFO Listening on 127.0.0.1:36729 +1530031516098 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.cL0mEPuNagfX" +1530031520215 Marionette INFO Listening on port 42653 +1530031520333 Marionette WARN TLS certificate errors will be ignored for this session +1530031521061 geckodriver INFO geckodriver 0.19.1 +1530031521066 geckodriver INFO Listening on 127.0.0.1:45977 +1530031522195 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.TGQj0vkYdZpW" +1530031527322 Marionette INFO Listening on port 41735 +1530031527409 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 551: 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 347: 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 347: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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 +[Child 4279, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 4279, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530031858145 geckodriver INFO geckodriver 0.19.1 +1530031858149 geckodriver INFO Listening on 127.0.0.1:56927 +1530031859282 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.fUvDxYeVwCmh" +1530031863200 Marionette INFO Listening on port 32801 +1530031863309 Marionette WARN TLS certificate errors will be ignored for this session +1530031863981 geckodriver INFO geckodriver 0.19.1 +1530031863985 geckodriver INFO Listening on 127.0.0.1:36875 +1530031865119 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.8I81ONnt5PO4" +1530031870052 Marionette INFO Listening on port 37317 +1530031870135 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 551: 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: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://localhost:8000/login/?next=/, line 347: 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 347: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +[Child 4867, Chrome_ChildThread] WARNING: pipe error (22): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 4867, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530032003689 geckodriver INFO geckodriver 0.19.1 +1530032003695 geckodriver INFO Listening on 127.0.0.1:38705 +1530032004829 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.1JioeQiPqmqr" +1530032009044 Marionette INFO Listening on port 40675 +1530032009152 Marionette WARN TLS certificate errors will be ignored for this session +1530032009831 geckodriver INFO geckodriver 0.19.1 +1530032009836 geckodriver INFO Listening on 127.0.0.1:53849 +1530032010968 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.G14IkFMwvrBC" +1530032016161 Marionette INFO Listening on port 43277 +1530032016199 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 551: 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 347: 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 347: 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 +[Child 5382, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 5382, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530111703132 geckodriver INFO geckodriver 0.19.1 +1530111703136 geckodriver INFO Listening on 127.0.0.1:46197 +1530111704243 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.EiK5DzDQqMJr" +1530111707850 Marionette INFO Listening on port 33557 +1530111707857 Marionette WARN TLS certificate errors will be ignored for this session +1530111708586 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 +GeckoDriver.prototype.quit()@driver.js:3300 +despatch()@server.js:293 +execute()@server.js:267 +onPacket/<()@server.js:242 +onPacket()@server.js:241 +_onJSONObjectReady/<()@transport.js:500 +[Child 22414, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530111756150 geckodriver INFO geckodriver 0.19.1 +1530111756153 geckodriver INFO Listening on 127.0.0.1:36775 +1530111757265 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.yWhgLNKJJDQ1" +1530111760928 Marionette INFO Listening on port 42419 +1530111760982 Marionette WARN TLS certificate errors will be ignored for this session +1530111761531 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 +GeckoDriver.prototype.quit()@driver.js:3300 +despatch()@server.js:293 +execute()@server.js:267 +onPacket/<()@server.js:242 +onPacket()@server.js:241 +_onJSONObjectReady/<()@transport.js:500 +[Child 22605, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530111777063 geckodriver INFO geckodriver 0.19.1 +1530111777067 geckodriver INFO Listening on 127.0.0.1:46449 +1530111778178 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.A8bojt3FJxYU" +1530111781872 Marionette INFO Listening on port 41177 +1530111781895 Marionette WARN TLS certificate errors will be ignored for this session +1530111782673 geckodriver INFO geckodriver 0.19.1 +1530111782678 geckodriver INFO Listening on 127.0.0.1:48381 +1530111783787 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.gEZkUzxVUf43" +1530111789018 Marionette INFO Listening on port 38649 +1530111789110 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 551: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 347: 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 347: 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/communities/, line 393: 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/community-view/3/, line 418: ReferenceError: None is not defined +[Child 22785, Chrome_ChildThread] WARNING: pipe error (37): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 22785, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 22785, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530111921075 geckodriver INFO geckodriver 0.19.1 +1530111921080 geckodriver INFO Listening on 127.0.0.1:51769 +1530111922188 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.TyDwnIUmboRA" +1530111925823 Marionette INFO Listening on port 34637 +1530111925900 Marionette WARN TLS certificate errors will be ignored for this session +1530111926565 geckodriver INFO geckodriver 0.19.1 +1530111926569 geckodriver INFO Listening on 127.0.0.1:37807 +1530111927674 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.8yxXTsiH44ku" +1530111932460 Marionette INFO Listening on port 41839 +1530111932493 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 551: 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 347: 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 347: 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 +[Child 23232, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 23232, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530114260016 geckodriver INFO geckodriver 0.19.1 +1530114260020 geckodriver INFO Listening on 127.0.0.1:36311 +1530114261124 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.IoR0dIr1Ib3W" +1530114264676 Marionette INFO Listening on port 46397 +1530114264737 Marionette WARN TLS certificate errors will be ignored for this session +1530114265340 geckodriver INFO geckodriver 0.19.1 +1530114265343 geckodriver INFO Listening on 127.0.0.1:57699 +1530114266467 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.PqodQDaKqzyZ" +1530114271336 Marionette INFO Listening on port 41353 +1530114271396 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 551: 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 347: 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 347: 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/articles/, line 317: ReferenceError: None is not defined +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +[Child 26879, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +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/articles/, line 317: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +1530114621370 geckodriver INFO geckodriver 0.19.1 +1530114621375 geckodriver INFO Listening on 127.0.0.1:54077 +1530114622481 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.48mla9Q492Fw" +1530114626263 Marionette INFO Listening on port 34731 +1530114626292 Marionette WARN TLS certificate errors will be ignored for this session +1530114627002 geckodriver INFO geckodriver 0.19.1 +1530114627007 geckodriver INFO Listening on 127.0.0.1:49573 +1530114628112 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.otYkdUvpBUNT" +1530114633319 Marionette INFO Listening on port 45457 +1530114633336 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 551: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 347: 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 347: 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 +[Child 27483, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 27483, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530114936756 geckodriver INFO geckodriver 0.19.1 +1530114936763 geckodriver INFO Listening on 127.0.0.1:41271 +1530114937870 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.tgAS3JBCRZry" +1530114941582 Marionette INFO Listening on port 34695 +1530114941683 Marionette WARN TLS certificate errors will be ignored for this session +[Child 28053, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 28053, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530115028508 geckodriver INFO geckodriver 0.19.1 +1530115028513 geckodriver INFO Listening on 127.0.0.1:39833 +1530115029619 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.gS8MDGeNEwy3" +1530115033163 Marionette INFO Listening on port 33055 +1530115033238 Marionette WARN TLS certificate errors will be ignored for this session +1530115068713 geckodriver INFO geckodriver 0.19.1 +1530115068718 geckodriver INFO Listening on 127.0.0.1:40769 +1530115069829 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.s7aEJsx7VuB3" +1530115073142 Marionette INFO Listening on port 44047 +1530115073243 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 551: 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 347: 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 347: 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 +[Child 28221, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 28221, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530115267606 geckodriver INFO geckodriver 0.19.1 +1530115267609 geckodriver INFO Listening on 127.0.0.1:44833 +1530115268715 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.Zja6EsjT3KGD" +1530115272217 Marionette INFO Listening on port 34115 +1530115272228 Marionette WARN TLS certificate errors will be ignored for this session +1530115292028 geckodriver INFO geckodriver 0.19.1 +1530115292031 geckodriver INFO Listening on 127.0.0.1:45003 +1530115293135 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.fRdRGUvJ5RZd" +1530115296869 Marionette INFO Listening on port 45763 +1530115296946 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 551: 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 347: ReferenceError: None is not defined +1530115765466 geckodriver INFO geckodriver 0.19.1 +1530115765473 geckodriver INFO Listening on 127.0.0.1:39061 +1530115766571 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.KQCLNIDv3L1D" +1530115770404 Marionette INFO Listening on port 38485 +1530115770488 Marionette WARN TLS certificate errors will be ignored for this session +1530115771054 geckodriver INFO geckodriver 0.19.1 +1530115771058 geckodriver INFO Listening on 127.0.0.1:53611 +1530115772167 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.Uw4S6mQjLdca" +1530115775553 addons.productaddons WARN Failed downloading via XHR, status: 0, reason: error +1530115777102 Marionette INFO Listening on port 39819 +1530115777183 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 551: 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 347: ReferenceError: None is not defined +1530116013697 geckodriver INFO geckodriver 0.19.1 +1530116013702 geckodriver INFO Listening on 127.0.0.1:58987 +1530116014814 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.EL3NRY7OMh4e" +1530116018368 Marionette INFO Listening on port 44635 +1530116018427 Marionette WARN TLS certificate errors will be ignored for this session +1530116019021 geckodriver INFO geckodriver 0.19.1 +1530116019025 geckodriver INFO Listening on 127.0.0.1:51977 +1530116020139 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.IhmIMrZSMU3j" +1530116025039 Marionette INFO Listening on port 45725 +1530116025067 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 551: 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 347: 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 347: 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 +[Child 29832, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 29832, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530116234877 geckodriver INFO geckodriver 0.19.1 +1530116234881 geckodriver INFO Listening on 127.0.0.1:49355 +1530116235997 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.n2nEK1bLBufH" +1530116239607 Marionette INFO Listening on port 36865 +1530116239622 Marionette WARN TLS certificate errors will be ignored for this session +1530116240193 geckodriver INFO geckodriver 0.19.1 +1530116240197 geckodriver INFO Listening on 127.0.0.1:44183 +1530116241305 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.uAEUlxzJvt2N" +1530116245920 Marionette INFO Listening on port 43875 +1530116246022 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 551: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 347: 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 347: 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 +1530116392115 geckodriver INFO geckodriver 0.19.1 +1530116392118 geckodriver INFO Listening on 127.0.0.1:54349 +1530116393223 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.8p79qeSP9FXU" +1530116396805 Marionette INFO Listening on port 38365 +1530116396843 Marionette WARN TLS certificate errors will be ignored for this session +1530116397442 geckodriver INFO geckodriver 0.19.1 +1530116397446 geckodriver INFO Listening on 127.0.0.1:50501 +1530116398549 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.sLyhzXRZIxfS" +1530116403755 Marionette INFO Listening on port 42743 +1530116403782 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 551: 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 347: 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 347: 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 +1530117086325 geckodriver INFO geckodriver 0.19.1 +1530117086329 geckodriver INFO Listening on 127.0.0.1:43723 +1530117087440 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.PEhdv8xizZsO" +1530117091161 Marionette INFO Listening on port 33177 +1530117091252 Marionette WARN TLS certificate errors will be ignored for this session +1530117091954 geckodriver INFO geckodriver 0.19.1 +1530117091959 geckodriver INFO Listening on 127.0.0.1:60591 +1530117093069 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.ASXiY5TIlh8m" +1530117097821 Marionette INFO Listening on port 39423 +1530117097887 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 551: 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 347: 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 347: 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 +1530117284274 geckodriver INFO geckodriver 0.19.1 +1530117284278 geckodriver INFO Listening on 127.0.0.1:33921 +1530117285386 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.1zT5vEIDlGJR" +1530117289089 Marionette INFO Listening on port 38805 +1530117289105 Marionette WARN TLS certificate errors will be ignored for this session +1530117289728 geckodriver INFO geckodriver 0.19.1 +1530117289731 geckodriver INFO Listening on 127.0.0.1:55793 +1530117290843 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.rURWixFK7rKd" +1530117295565 Marionette INFO Listening on port 39637 +1530117295662 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 551: 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 347: 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 347: 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 +1530117879643 geckodriver INFO geckodriver 0.19.1 +1530117879649 geckodriver INFO Listening on 127.0.0.1:44039 +1530117880756 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.q28cWwTI7uTX" +1530117884409 Marionette INFO Listening on port 45949 +1530117884473 Marionette WARN TLS certificate errors will be ignored for this session +1530117885038 geckodriver INFO geckodriver 0.19.1 +1530117885041 geckodriver INFO Listening on 127.0.0.1:49997 +1530117886147 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.UmCXgnAL4x0S" +1530117891053 Marionette INFO Listening on port 36175 +1530117891067 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 578: 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 347: 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 347: 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 +1530128187789 geckodriver INFO geckodriver 0.19.1 +1530128187794 geckodriver INFO Listening on 127.0.0.1:38863 +1530128188903 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.v8K2UhDLujqi" +1530128192470 Marionette INFO Listening on port 36285 +1530128192520 Marionette WARN TLS certificate errors will be ignored for this session +1530128193230 geckodriver INFO geckodriver 0.19.1 +1530128193233 geckodriver INFO Listening on 127.0.0.1:51151 +1530128194341 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.YJhWVSbe0Eks" +1530128199856 Marionette INFO Listening on port 45713 +1530128199876 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 578: 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 347: 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 347: 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 +1530128278402 geckodriver INFO geckodriver 0.19.1 +1530128278407 geckodriver INFO Listening on 127.0.0.1:48037 +1530128279511 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.Nx3dNTDQY21l" +1530128283314 Marionette INFO Listening on port 39407 +1530128283331 Marionette WARN TLS certificate errors will be ignored for this session +1530128283936 geckodriver INFO geckodriver 0.19.1 +1530128283940 geckodriver INFO Listening on 127.0.0.1:43375 +1530128285043 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.EGzaL0XDYpar" +1530128290282 Marionette INFO Listening on port 45305 +1530128290357 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 578: 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 347: 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 347: 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 +[Child 4443, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 4443, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530202862052 geckodriver INFO geckodriver 0.19.1 +1530202862057 geckodriver INFO Listening on 127.0.0.1:53365 +1530202863225 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.fdDxI66eWyxo" +1530202873658 Marionette INFO Listening on port 45381 +1530202873766 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 493: 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 352: 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 352: 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 +1530203334949 geckodriver INFO geckodriver 0.19.1 +1530203334956 geckodriver INFO Listening on 127.0.0.1:39811 +1530203336081 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.c2RY53f7F7Uq" +1530203340339 Marionette INFO Listening on port 44541 +1530203340399 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 493: 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 352: 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 352: 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 +1530220114511 geckodriver INFO geckodriver 0.19.1 +1530220114516 geckodriver INFO Listening on 127.0.0.1:60933 +1530220115640 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.5bjNviH3Ypu0" +1530220119635 Marionette INFO Listening on port 46371 +1530220119658 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 493: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 352: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 352: 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/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/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 +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" +1530220416638 geckodriver INFO geckodriver 0.19.1 +1530220416645 geckodriver INFO Listening on 127.0.0.1:53567 +1530220417769 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.MNThwdjzQel4" +1530220421814 Marionette INFO Listening on port 37489 +1530220421885 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 493: 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 352: 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 352: 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/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/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 +1530220552911 geckodriver INFO geckodriver 0.19.1 +1530220552918 geckodriver INFO Listening on 127.0.0.1:44761 +1530220554049 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.wjWo4hyFLhoP" +1530220557934 Marionette INFO Listening on port 40065 +1530220557973 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 493: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 352: 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 352: 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/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/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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +1530220888136 geckodriver INFO geckodriver 0.19.1 +1530220888140 geckodriver INFO Listening on 127.0.0.1:44207 +1530220889279 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.M9EOdfKglYjA" +1530220893240 Marionette INFO Listening on port 38771 +1530220893301 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart 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 493: 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 352: 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 352: 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/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 +[Child 21448, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 21448, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530221735602 geckodriver INFO geckodriver 0.19.1 +1530221735606 geckodriver INFO Listening on 127.0.0.1:58677 +1530221736738 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.bUHCsk1gIUkf" +1530221740879 Marionette INFO Listening on port 37921 +1530221740952 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 493: 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 352: 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 352: 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/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 +[Child 22231, Chrome_ChildThread] WARNING: pipe error (36): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 22231, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 22231, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530223822006 geckodriver INFO geckodriver 0.19.1 +1530223822012 geckodriver INFO Listening on 127.0.0.1:49849 +1530223823141 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.5QSbg2N8plPX" +1530223827158 Marionette INFO Listening on port 46685 +1530223827255 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 493: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 352: 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 352: 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/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 +[Child 23384, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 23384, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530234322070 geckodriver INFO geckodriver 0.19.1 +1530234322075 geckodriver INFO Listening on 127.0.0.1:33433 +1530234323185 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.rXKcawtLoawk" +1530234327270 Marionette INFO Listening on port 40995 +1530234327301 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 520: 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 352: 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 +1530235177896 geckodriver INFO geckodriver 0.19.1 +1530235177901 geckodriver INFO Listening on 127.0.0.1:37527 +1530235179008 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.PB3FtTybQiaR" +1530235183019 Marionette INFO Listening on port 38895 +1530235183128 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: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://localhost:8000/, line 520: 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 352: 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 +1530235428459 geckodriver INFO geckodriver 0.19.1 +1530235428465 geckodriver INFO Listening on 127.0.0.1:48945 +1530235429582 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.lRy7iKMaYFYf" +1530235433147 Marionette INFO Listening on port 34629 +1530235433196 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 520: 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 352: 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 +1530235827133 geckodriver INFO geckodriver 0.19.1 +1530235827137 geckodriver INFO Listening on 127.0.0.1:58747 +1530235828249 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.7RcM9YSW41ns" +1530235831783 Marionette INFO Listening on port 42677 +1530235831859 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 520: 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 352: 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/communities/, line 346: 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/community-view/1/, line 443: ReferenceError: None is not defined +1530236110297 geckodriver INFO geckodriver 0.19.1 +1530236110300 geckodriver INFO Listening on 127.0.0.1:49967 +1530236111412 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.CLmopMTbLPUh" +1530236114970 Marionette INFO Listening on port 45565 +1530236115027 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 520: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +1530236574505 geckodriver INFO geckodriver 0.19.1 +1530236574510 geckodriver INFO Listening on 127.0.0.1:52083 +1530236575631 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.QAyn9L8JJbtz" +1530236579040 Marionette INFO Listening on port 40475 +1530236579142 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 520: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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 +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" +1530237198141 geckodriver INFO geckodriver 0.19.1 +1530237198153 geckodriver INFO Listening on 127.0.0.1:36531 +1530237199297 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.RRZBHOW8uKnE" +1530237204491 Marionette INFO Listening on port 40351 +1530237204553 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 520: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +1530237377820 geckodriver INFO geckodriver 0.19.1 +1530237377825 geckodriver INFO Listening on 127.0.0.1:38549 +1530237378944 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.IlTAEHtgLzVg" +1530237382755 Marionette INFO Listening on port 39087 +1530237382869 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 520: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +1530237605010 geckodriver INFO geckodriver 0.19.1 +1530237605015 geckodriver INFO Listening on 127.0.0.1:40065 +1530237606130 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.AzKIagReo8KJ" +1530237610172 Marionette INFO Listening on port 41355 +1530237610248 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 520: 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 352: 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/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 +1530238004299 geckodriver INFO geckodriver 0.19.1 +1530238004303 geckodriver INFO Listening on 127.0.0.1:49491 +1530238005420 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.1fg9trmuqCo5" +1530238009269 Marionette INFO Listening on port 34683 +1530238009344 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 520: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +1530238445947 geckodriver INFO geckodriver 0.19.1 +1530238445956 geckodriver INFO Listening on 127.0.0.1:44449 +1530238447108 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.Z4OkkaK6kaGb" +1530238452835 Marionette INFO Listening on port 37983 +1530238452854 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 520: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 352: 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 +1530238590062 geckodriver INFO geckodriver 0.19.1 +1530238590068 geckodriver INFO Listening on 127.0.0.1:45131 +1530238591171 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.5DNEHdFZXvHW" +1530238595166 Marionette INFO Listening on port 33855 +1530238595194 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 520: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 + +(/usr/lib/firefox/firefox:5611): dconf-WARNING **: 07:55:31.946: Unable to open /var/lib/snapd/desktop/dconf/profile/user: Permission denied +JavaScript error: http://localhost:8000/login/?next=/, line 352: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 +1530240334999 geckodriver INFO geckodriver 0.19.1 +1530240335003 geckodriver INFO Listening on 127.0.0.1:49451 +1530240336113 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.DGiIlthPZ0Tk" +1530240339871 Marionette INFO Listening on port 44067 +1530240339927 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 520: 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 352: ReferenceError: None is not defined +1530240466184 geckodriver INFO geckodriver 0.19.1 +1530240466189 geckodriver INFO Listening on 127.0.0.1:57699 +1530240467295 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.2zDc3moIXWln" +1530240471119 Marionette INFO Listening on port 43347 +1530240471210 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 520: 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 352: 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 +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" +1530240651163 geckodriver INFO geckodriver 0.19.1 +1530240651168 geckodriver INFO Listening on 127.0.0.1:59745 +1530240652290 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.bRtw3xAoUjjN" +1530240655913 Marionette INFO Listening on port 38813 +1530240656001 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 520: 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 352: 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 +[Child 11303, Chrome_ChildThread] WARNING: pipe error (17): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +[Child 11303, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-m9FtQy/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +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: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://localhost:8000/, line 569: 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 347: 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 347: 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/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" +Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... "Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]" nsresult: "0x80004002 (NS_NOINTERFACE)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: _docShellToWindow :: line 768" data: no] +Stack: _docShellToWindow@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:768:9 +_docShellsToWindows/<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:792:38 +_docShellsToWindows@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:792:12 +_notifyDocShellsUpdate@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:796:19 +DebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1624:7 +exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14 +Line: 768, column: 0 +console.error: "Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... \"Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]\" nsresult: \"0x80004002 (NS_NOINTERFACE)\" location: \"JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: _docShellToWindow :: line 768\" data: no]\nStack: _docShellToWindow@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:768:9\n_docShellsToWindows/<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:792:38\n_docShellsToWindows@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:792:12\n_notifyDocShellsUpdate@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:796:19\nDebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1624:7\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\nLine: 768, column: 0" +Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... "Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]" nsresult: "0x80004002 (NS_NOINTERFACE)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: DebuggerProgressListener.prototype.onStateChange< :: line 1627" data: no] +Stack: DebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1627:9 +exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14 +Line: 1627, column: 0 +console.error: "Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... \"Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]\" nsresult: \"0x80004002 (NS_NOINTERFACE)\" location: \"JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: DebuggerProgressListener.prototype.onStateChange< :: line 1627\" data: no]\nStack: DebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1627:9\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\nLine: 1627, column: 0" +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: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 +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" +1530163762937 geckodriver INFO geckodriver 0.19.1 +1530163762940 geckodriver INFO Listening on 127.0.0.1:58539 +1530163764056 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.NpL35SZXtIEw" +1530163767416 Marionette INFO Listening on port 44493 +1530163767469 Marionette WARN TLS certificate errors will be ignored for this session +1530163769401 geckodriver INFO geckodriver 0.19.1 +1530163769405 geckodriver INFO Listening on 127.0.0.1:49939 +1530163770535 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.gHWgyjvX906Q" +1530163774323 Marionette INFO Listening on port 35203 +1530163774356 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 569: 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 347: 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 347: 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/communities/, line 341: 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/community-view/1/, line 445: ReferenceError: None is not defined +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +[Child 13626, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +[Child 13778, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530163851490 geckodriver INFO geckodriver 0.19.1 +1530163851494 geckodriver INFO Listening on 127.0.0.1:58195 +1530163852612 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.SvZsPc2naGEH" +1530163856009 Marionette INFO Listening on port 34429 +1530163856029 Marionette WARN TLS certificate errors will be ignored for this session +1530163857723 geckodriver INFO geckodriver 0.19.1 +1530163857727 geckodriver INFO Listening on 127.0.0.1:44075 +1530163858851 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.JYrkKjBsqVwe" +1530163862540 Marionette INFO Listening on port 33423 +1530163862572 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart 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 569: 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 347: 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 347: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +[Child 14177, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14177, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14030, Chrome_ChildThread] WARNING: pipe error (34): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14030, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14030, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530164103874 geckodriver INFO geckodriver 0.19.1 +1530164103878 geckodriver INFO Listening on 127.0.0.1:56755 +1530164104993 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.lIqV9xjjwafL" +1530164108488 Marionette INFO Listening on port 38065 +1530164108515 Marionette WARN TLS certificate errors will be ignored for this session +1530164109869 geckodriver INFO geckodriver 0.19.1 +1530164109873 geckodriver INFO Listening on 127.0.0.1:54329 +1530164110992 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.PJ45gjWMod7v" +1530164114813 Marionette INFO Listening on port 41697 +1530164114906 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 569: 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 347: 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 347: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +[Child 14682, Chrome_ChildThread] WARNING: pipe error (34): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14682, Chrome_ChildThread] WARNING: pipe error (22): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14682, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530168342556 geckodriver INFO geckodriver 0.19.1 +1530168342559 geckodriver INFO Listening on 127.0.0.1:60347 +1530168343675 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.mW3SPfJkMBkG" +1530168347030 Marionette INFO Listening on port 38555 +1530168347096 Marionette WARN TLS certificate errors will be ignored for this session +1530168566204 geckodriver INFO geckodriver 0.19.1 +1530168566207 geckodriver INFO Listening on 127.0.0.1:53677 +1530168567327 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.ZZbXJADadcrS" +1530168570597 Marionette INFO Listening on port 41413 +1530168570647 Marionette WARN TLS certificate errors will be ignored for this session +1530168655174 geckodriver INFO geckodriver 0.19.1 +1530168655177 geckodriver INFO Listening on 127.0.0.1:55451 +1530168656310 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.KECHBSQq3rpv" +1530168659634 Marionette INFO Listening on port 43561 +1530168659726 Marionette WARN TLS certificate errors will be ignored for this session +1530168659829 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 +GeckoDriver.prototype.quit()@driver.js:3300 +despatch()@server.js:293 +execute()@server.js:267 +onPacket/<()@server.js:242 +onPacket()@server.js:241 +_onJSONObjectReady/<()@transport.js:500 +[Child 28486, Chrome_ChildThread] WARNING: pipe error (22): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 28486, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530168681691 geckodriver INFO geckodriver 0.19.1 +1530168681694 geckodriver INFO Listening on 127.0.0.1:54219 +1530168682813 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.0K4oZewVxTKq" +1530168686317 Marionette INFO Listening on port 34605 +1530168686327 Marionette WARN TLS certificate errors will be ignored for this session +1530168687786 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 +GeckoDriver.prototype.quit()@driver.js:3300 +despatch()@server.js:293 +execute()@server.js:267 +onPacket/<()@server.js:242 +onPacket()@server.js:241 +_onJSONObjectReady/<()@transport.js:500 +1530168798867 geckodriver INFO geckodriver 0.19.1 +1530168798872 geckodriver INFO Listening on 127.0.0.1:45833 +1530168799988 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.zBVLMgF8V9mb" +1530168803431 Marionette INFO Listening on port 36449 +1530168803500 Marionette WARN TLS certificate errors will be ignored for this session +1530168804521 geckodriver INFO geckodriver 0.19.1 +1530168804524 geckodriver INFO Listening on 127.0.0.1:39657 +1530168805646 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.0vJX9YvAN5Gt" +1530168809535 Marionette INFO Listening on port 44115 +1530168809564 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 574: 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 352: 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 +1530168902858 geckodriver INFO geckodriver 0.19.1 +1530168902862 geckodriver INFO Listening on 127.0.0.1:39395 +1530168903974 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.3PJiQIY0GtgX" +1530168907313 Marionette INFO Listening on port 34333 +1530168907390 Marionette WARN TLS certificate errors will be ignored for this session +1530168909153 geckodriver INFO geckodriver 0.19.1 +1530168909157 geckodriver INFO Listening on 127.0.0.1:43439 +1530168910287 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.PlTADnMhHwJQ" +1530168914081 Marionette INFO Listening on port 45525 +1530168914123 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: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://localhost:8000/, line 574: 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 352: 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 +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +[Child 29316, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530169074019 geckodriver INFO geckodriver 0.19.1 +1530169074022 geckodriver INFO Listening on 127.0.0.1:58587 +1530169075142 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.sUzFeeWPaFsz" +1530169078562 Marionette INFO Listening on port 45811 +1530169078657 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 574: 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 352: 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 +[Child 29801, Chrome_ChildThread] WARNING: pipe error (34): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 29801, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 29801, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530174819669 geckodriver INFO geckodriver 0.19.1 +1530174819672 geckodriver INFO Listening on 127.0.0.1:38503 +1530174820786 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.oTC3jQCtBltG" +1530174824213 Marionette INFO Listening on port 35333 +1530174824302 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 574: 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 352: ReferenceError: None is not defined +1530174928706 geckodriver INFO geckodriver 0.19.1 +1530174928709 geckodriver INFO Listening on 127.0.0.1:41479 +1530174929821 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.plHgnJSSjbqI" +1530174933328 Marionette INFO Listening on port 38699 +1530174933336 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 574: 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 352: 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 +[Child 32535, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 32535, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530175565363 geckodriver INFO geckodriver 0.19.1 +1530175565367 geckodriver INFO Listening on 127.0.0.1:59191 +1530175566487 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.fJZKAhcs8Uxr" +1530175569641 Marionette INFO Listening on port 41419 +1530175569709 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 574: 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 352: 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 +[Child 750, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 750, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530175688122 geckodriver INFO geckodriver 0.19.1 +1530175688126 geckodriver INFO Listening on 127.0.0.1:35143 +1530175689243 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.TCYDa3oxfumh" +1530175692732 Marionette INFO Listening on port 37527 +1530175692762 Marionette WARN TLS certificate errors will be ignored for this session +1530175800330 geckodriver INFO geckodriver 0.19.1 +1530175800333 geckodriver INFO Listening on 127.0.0.1:47707 +1530175801449 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.jYBM1cnE3J4a" +1530175804854 Marionette INFO Listening on port 42947 +1530175804870 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 574: 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 352: 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/, line 574: ReferenceError: None is not defined +[Child 1322, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530176630082 geckodriver INFO geckodriver 0.19.1 +1530176630085 geckodriver INFO Listening on 127.0.0.1:58219 +1530176631193 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.g5W0ySGcTst3" +1530176634587 Marionette INFO Listening on port 33973 +1530176634615 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 574: 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 352: 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 +1530177798328 geckodriver INFO geckodriver 0.19.1 +1530177798331 geckodriver INFO Listening on 127.0.0.1:54625 +1530177799443 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.BZIzqnrCDzjf" +1530177802690 Marionette INFO Listening on port 39957 +1530177802759 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 574: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 352: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +[Child 3287, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 3287, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530178755930 geckodriver INFO geckodriver 0.19.1 +1530178755933 geckodriver INFO Listening on 127.0.0.1:41593 +1530178757044 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.3v3Wt5hnykOn" +1530178760572 Marionette INFO Listening on port 46097 +1530178760656 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 +1530179039954 geckodriver INFO geckodriver 0.19.1 +1530179039958 geckodriver INFO Listening on 127.0.0.1:44095 +1530179041074 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.YfeUfuBu63eP" +1530179044567 Marionette INFO Listening on port 34695 +1530179044598 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 574: 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 352: 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 352: 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 +1530179236085 geckodriver INFO geckodriver 0.19.1 +1530179236089 geckodriver INFO Listening on 127.0.0.1:42649 +1530179237243 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.h3G9dBWT2O0Z" +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530179273743 geckodriver INFO geckodriver 0.19.1 +1530179273747 geckodriver INFO Listening on 127.0.0.1:38873 +1530179274861 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.VaZmfhxktuYI" +1530179278335 Marionette INFO Listening on port 40001 +1530179278375 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart 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 574: 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 352: 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 352: 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 +1530179415265 geckodriver INFO geckodriver 0.19.1 +1530179415270 geckodriver INFO Listening on 127.0.0.1:32805 +1530179416382 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.3BPNqJdQviaP" +1530179420033 Marionette INFO Listening on port 41149 +1530179420096 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 574: 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 352: 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 352: 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 +[Child 5153, Chrome_ChildThread] WARNING: pipe error (23): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 5153, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530181347418 geckodriver INFO geckodriver 0.19.1 +1530181347422 geckodriver INFO Listening on 127.0.0.1:41519 +1530181348541 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.NbTht4Aq3zQ2" +1530181351913 Marionette INFO Listening on port 36471 +1530181351957 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 574: 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 352: 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 352: 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 +1530182211515 geckodriver INFO geckodriver 0.19.1 +1530182211519 geckodriver INFO Listening on 127.0.0.1:51929 +1530182212632 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.kdHYDh2u6KVt" +1530182216136 Marionette INFO Listening on port 33693 +1530182216149 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 574: 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 352: 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 352: 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 +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" +1530182507989 geckodriver INFO geckodriver 0.19.1 +1530182507994 geckodriver INFO Listening on 127.0.0.1:32785 +1530182509108 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.8AnAoAb8q3wm" +1530182512350 Marionette INFO Listening on port 36701 +1530182512421 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 574: 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 352: 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 352: 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/communities/, line 346: 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/communities/, line 346: ReferenceError: None is not defined +1530182632631 geckodriver INFO geckodriver 0.19.1 +1530182632635 geckodriver INFO Listening on 127.0.0.1:59577 +1530182633752 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.yj0XMSpWx2Dr" +1530182637412 Marionette INFO Listening on port 35273 +1530182637466 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 574: 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 352: 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 352: 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 +[Child 10575, Chrome_ChildThread] WARNING: pipe error (34): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 10575, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 10575, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +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 +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" +Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... "Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]" nsresult: "0x80004002 (NS_NOINTERFACE)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: _docShellToWindow :: line 768" data: no] +Stack: _docShellToWindow@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:768:9 +_docShellsToWindows/<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:792:38 +_docShellsToWindows@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:792:12 +_notifyDocShellsUpdate@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:796:19 +DebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1624:7 +exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14 +Line: 768, column: 0 +console.error: "Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... \"Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]\" nsresult: \"0x80004002 (NS_NOINTERFACE)\" location: \"JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: _docShellToWindow :: line 768\" data: no]\nStack: _docShellToWindow@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:768:9\n_docShellsToWindows/<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:792:38\n_docShellsToWindows@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:792:12\n_notifyDocShellsUpdate@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:796:19\nDebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1624:7\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\nLine: 768, column: 0" +Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... "Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]" nsresult: "0x80004002 (NS_NOINTERFACE)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: DebuggerProgressListener.prototype.onStateChange< :: line 1627" data: no] +Stack: DebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1627:9 +exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14 +Line: 1627, column: 0 +console.error: "Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... \"Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]\" nsresult: \"0x80004002 (NS_NOINTERFACE)\" location: \"JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: DebuggerProgressListener.prototype.onStateChange< :: line 1627\" data: no]\nStack: DebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1627:9\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\nLine: 1627, column: 0" +1530185025291 geckodriver INFO geckodriver 0.19.1 +1530185025294 geckodriver INFO Listening on 127.0.0.1:49335 +1530185026408 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.URFhXFYeHvHZ" +1530185029910 Marionette INFO Listening on port 34183 +1530185029943 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: https://platform.twitter.com/widgets/widget_iframe.c5b006ac082bc92aa829181b9ce63af1.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://localhost:8000/, line 574: 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 352: 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 +[Child 13351, Chrome_ChildThread] WARNING: pipe error (34): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 13351, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 13351, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530186031416 geckodriver INFO geckodriver 0.19.1 +1530186031419 geckodriver INFO Listening on 127.0.0.1:52741 +1530186032530 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.7s3Fo54kpGd6" +1530186035859 Marionette INFO Listening on port 33127 +1530186035944 Marionette WARN TLS certificate errors will be ignored for this session +1530186356169 geckodriver INFO geckodriver 0.19.1 +1530186356172 geckodriver INFO Listening on 127.0.0.1:34733 +1530186357282 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.mbHTJLrMsBWx" +1530186360614 Marionette INFO Listening on port 40639 +1530186360696 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 574: 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 352: 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 +1530186505355 geckodriver INFO geckodriver 0.19.1 +1530186505359 geckodriver INFO Listening on 127.0.0.1:49501 +1530186506472 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.RcaAo5hoxrE9" +1530186509951 Marionette INFO Listening on port 42345 +1530186509995 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 574: 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 352: 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 +[Child 15690, Chrome_ChildThread] WARNING: pipe error (34): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 15690, Chrome_ChildThread] WARNING: pipe error (22): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 15690, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530187130289 geckodriver INFO geckodriver 0.19.1 +1530187130292 geckodriver INFO Listening on 127.0.0.1:42375 +1530187131413 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.SRBbg9vB7eBv" +1530187134898 Marionette INFO Listening on port 33239 +1530187134928 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 574: 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 352: 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 +1530187286136 geckodriver INFO geckodriver 0.19.1 +1530187286141 geckodriver INFO Listening on 127.0.0.1:37269 +1530187287249 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.6s0dbNleFVLk" +1530187290652 Marionette INFO Listening on port 46037 +1530187290662 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 574: 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 352: 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 +[Child 16840, Chrome_ChildThread] WARNING: pipe error (22): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 16840, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530202928998 geckodriver INFO geckodriver 0.19.1 +1530202929001 geckodriver INFO Listening on 127.0.0.1:37325 +1530202930113 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.gKX6gztv54Qs" +1530202933373 Marionette INFO Listening on port 46017 +1530202933428 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 574: 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 352: 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 352: 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 +1530203360995 geckodriver INFO geckodriver 0.19.1 +1530203360999 geckodriver INFO Listening on 127.0.0.1:39433 +1530203362124 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.bG2iBknK0rmJ" +1530203365539 Marionette INFO Listening on port 34503 +1530203365640 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 574: 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 352: 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 352: 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 +1530203464138 geckodriver INFO geckodriver 0.19.1 +1530203464141 geckodriver INFO Listening on 127.0.0.1:58597 +1530203465255 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.U3YKyKb0usug" +1530203468770 Marionette INFO Listening on port 35131 +1530203468871 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 574: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +[Child 28258, Chrome_ChildThread] WARNING: pipe error (34): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 28258, Chrome_ChildThread] WARNING: pipe error (22): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 28258, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530207625362 geckodriver INFO geckodriver 0.19.1 +1530207625365 geckodriver INFO Listening on 127.0.0.1:51251 +1530207626485 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.BrBKrlUSwd8A" +1530207629940 Marionette INFO Listening on port 43837 +1530207629999 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 574: 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 352: 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/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 +1530208019196 geckodriver INFO geckodriver 0.19.1 +1530208019200 geckodriver INFO Listening on 127.0.0.1:43985 +1530208020311 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.T61Atx27EoWh" +1530208023644 Marionette INFO Listening on port 38567 +1530208023722 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 574: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +1522749490714 geckodriver INFO Listening on 127.0.0.1:45939 +1522749490797 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.tg2EZfiSLrqc +1522749490798 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522749490820 geckodriver::marionette INFO Connecting to Marionette on localhost:36149 +1522749495788 Marionette INFO Enabled via --marionette +1522749501294 Marionette INFO Listening on port 36149 +1522749509460 geckodriver INFO Listening on 127.0.0.1:34235 +1522749510458 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.ZtSORcUDdxHH +1522749510459 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522749510495 geckodriver::marionette INFO Connecting to Marionette on localhost:45795 +1522749512340 Marionette INFO Enabled via --marionette +1522749517212 Marionette INFO Listening on port 45795 +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 6366, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 6366, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 6366, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 325: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables] +JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 325: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables] +1522749712798 geckodriver INFO Listening on 127.0.0.1:50309 +1522749712850 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.h9nMzw8b2IQv +1522749712851 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522749712853 geckodriver::marionette INFO Connecting to Marionette on localhost:34835 +1522749713724 Marionette INFO Enabled via --marionette +1522749717208 Marionette INFO Listening on port 34835 +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 6825, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 6825, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 6825, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522749842898 geckodriver INFO Listening on 127.0.0.1:44977 +1522749843900 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.WXoTwgjwXSCJ +1522749843901 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522749843904 geckodriver::marionette INFO Connecting to Marionette on localhost:44395 +1522749844786 Marionette INFO Enabled via --marionette +1522749847334 Marionette INFO Listening on port 44395 +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 7108, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 7108, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 7108, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522749951216 geckodriver INFO Listening on 127.0.0.1:39661 +1522749952218 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.OH1Don82i9XZ +1522749952219 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522749952221 geckodriver::marionette INFO Connecting to Marionette on localhost:41591 +1522749953052 Marionette INFO Enabled via --marionette +1522749955604 Marionette INFO Listening on port 41591 +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.4ed13d9ce94e60c41048ece32559b04c.html?origin=http%3A%2F%2F10.129.26.119, line 12: Error: Network error. +[Child 7373, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 7373, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 7373, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522750351616 geckodriver INFO Listening on 127.0.0.1:44789 +1522750352618 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.5v1MsyqNvqsW +1522750352619 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522750352621 geckodriver::marionette INFO Connecting to Marionette on localhost:43171 +1522750353504 Marionette INFO Enabled via --marionette +1522750356092 Marionette INFO Listening on port 43171 +1522750356295 geckodriver INFO Listening on 127.0.0.1:42447 +1522750357294 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.TyCXHVEigrgw +1522750357296 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522750357346 geckodriver::marionette INFO Connecting to Marionette on localhost:42805 +1522750360078 Marionette INFO Enabled via --marionette +1522750363610 Marionette INFO Listening on port 42805 +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 7924, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 7924, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 7924, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522751211316 geckodriver INFO Listening on 127.0.0.1:46731 +1522751211428 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.bimy1iFXLw0v +1522751211429 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522751211452 geckodriver::marionette INFO Connecting to Marionette on localhost:42155 +1522751216144 Marionette INFO Enabled via --marionette +1522751223224 Marionette INFO Listening on port 42155 +1522751224030 geckodriver INFO Listening on 127.0.0.1:38231 +1522751225029 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.pUXE7GzOMuHf +1522751225030 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522751225033 geckodriver::marionette INFO Connecting to Marionette on localhost:35751 +1522751226270 Marionette INFO Enabled via --marionette +1522751229818 Marionette INFO Listening on port 35751 +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 14085, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14085, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14085, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522751322824 geckodriver INFO Listening on 127.0.0.1:41889 +1522751323829 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.hXhHYAHTPjun +1522751323830 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522751323833 geckodriver::marionette INFO Connecting to Marionette on localhost:38103 +1522751324704 Marionette INFO Enabled via --marionette +1522751327294 Marionette INFO Listening on port 38103 +1522751327466 geckodriver INFO Listening on 127.0.0.1:38767 +1522751328467 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.7Z49e5LGBNlA +1522751328468 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522751328470 geckodriver::marionette INFO Connecting to Marionette on localhost:38509 +1522751329338 Marionette INFO Enabled via --marionette +1522751332996 Marionette INFO Listening on port 38509 +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 14519, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14519, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14519, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 325: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables] +JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 325: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables] +JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 325: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables] +JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 325: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables] +JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 325: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables] +JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 325: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables] +1522751630220 geckodriver INFO Listening on 127.0.0.1:42223 +1522751631235 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.3t6EVZ5XtmI1 +1522751631237 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522751631239 geckodriver::marionette INFO Connecting to Marionette on localhost:32779 +1522751632852 Marionette INFO Enabled via --marionette +1522751636100 Marionette INFO Listening on port 32779 +1522751636293 geckodriver INFO Listening on 127.0.0.1:54093 +1522751637292 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.htavwy7j7kLg +1522751637294 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522751637296 geckodriver::marionette INFO Connecting to Marionette on localhost:42625 +1522751638564 Marionette INFO Enabled via --marionette +1522751641498 Marionette INFO Listening on port 42625 +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +[Child 15360, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 15322, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522751818734 geckodriver INFO Listening on 127.0.0.1:36517 +1522751819747 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.dh45OeLs1HVE +1522751819748 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522751819751 geckodriver::marionette INFO Connecting to Marionette on localhost:42361 +1522751820750 Marionette INFO Enabled via --marionette +1522751823400 Marionette INFO Listening on port 42361 +1522751823595 geckodriver INFO Listening on 127.0.0.1:56323 +1522751824594 mozprofile::profile INFO Using profile path /tmp/rust_mozprofile.IdsY1GhqWKv1 +1522751824595 geckodriver::marionette INFO Starting browser /usr/bin/firefox +1522751824598 geckodriver::marionette INFO Connecting to Marionette on localhost:43093 +1522751825588 Marionette INFO Enabled via --marionette +1522751828894 Marionette INFO Listening on port 43093 +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.4ed13d9ce94e60c41048ece32559b04c.html?origin=http%3A%2F%2F10.129.26.119, line 12: Error: Network error. +[Child 15613, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 15613, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 15613, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522752136268 geckodriver INFO geckodriver 0.18.0 +1522752136272 geckodriver INFO Listening on 127.0.0.1:37011 +1522752137447 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522752138322 Marionette INFO Enabled via --marionette +1522752140880 Marionette INFO Listening on port 34213 +1522752140962 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1522752254888 geckodriver INFO geckodriver 0.18.0 +1522752254892 geckodriver INFO Listening on 127.0.0.1:48215 +1522752256006 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522752256864 Marionette INFO Enabled via --marionette +1522752259432 Marionette INFO Listening on port 42385 +1522752259522 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 16420, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 16420, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 16420, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522752302764 geckodriver INFO geckodriver 0.18.0 +1522752302767 geckodriver INFO Listening on 127.0.0.1:39191 +1522752303873 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522752305604 Marionette INFO Enabled via --marionette +1522752308732 Marionette INFO Listening on port 39671 +1522752308794 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 16652, Chrome_ChildThread] WARNING: pipe error (23): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 16652, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 16652, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522752355402 geckodriver INFO geckodriver 0.18.0 +1522752355409 geckodriver INFO Listening on 127.0.0.1:39891 +1522752356519 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522752357380 Marionette INFO Enabled via --marionette +1522752360044 Marionette INFO Listening on port 33181 +1522752360136 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 16935, Chrome_ChildThread] WARNING: pipe error (23): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 16935, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 16935, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522752369425 geckodriver INFO geckodriver 0.18.0 +1522752369430 geckodriver INFO Listening on 127.0.0.1:37665 +1522752370540 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522752371410 Marionette INFO Enabled via --marionette +1522752374036 Marionette INFO Listening on port 33795 +1522752374066 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 17191, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 17191, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 17191, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522752792290 geckodriver INFO geckodriver 0.18.0 +1522752792294 geckodriver INFO Listening on 127.0.0.1:54199 +1522752793404 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522752794250 Marionette INFO Enabled via --marionette +1522752796918 Marionette INFO Listening on port 33095 +1522752797018 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 17583, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 17583, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 17583, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522752804516 geckodriver INFO geckodriver 0.18.0 +1522752804522 geckodriver INFO Listening on 127.0.0.1:38733 +1522752805633 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522752806474 Marionette INFO Enabled via --marionette +1522752808856 Marionette INFO Listening on port 44451 +1522752808950 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 17758, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 17758, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 17758, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522752854460 geckodriver INFO geckodriver 0.18.0 +1522752854463 geckodriver INFO Listening on 127.0.0.1:60545 +1522752855567 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522752856434 Marionette INFO Enabled via --marionette +1522752858910 Marionette INFO Listening on port 34175 +1522752858982 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 17931, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 17931, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 17931, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522752867654 geckodriver INFO geckodriver 0.18.0 +1522752867661 geckodriver INFO Listening on 127.0.0.1:53107 +1522752868764 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522752869598 Marionette INFO Enabled via --marionette +1522752872106 Marionette INFO Listening on port 46209 +1522752872180 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 18094, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 + +###!!! [Child][MessageChannel] Error: (msgtype=0x4,name=PAPZCTreeManager::Msg_UpdateZoomConstraints) Channel error: cannot send/recv + +[Child 18094, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522752939299 geckodriver INFO geckodriver 0.18.0 +1522752939302 geckodriver INFO Listening on 127.0.0.1:56199 +1522752940405 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522752941250 Marionette INFO Enabled via --marionette +1522752943858 Marionette INFO Listening on port 34665 +1522752943934 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 18299, Chrome_ChildThread] WARNING: pipe error (23): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 18299, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +************************* +A coding exception was thrown and uncaught in a Task. + +Full message: TypeError: content.text is undefined +Full stack: fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +************************* +************************* +A coding exception was thrown and uncaught in a Task. + +Full message: TypeError: content.text is undefined +Full stack: fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +************************* +console.error: + Message: TypeError: content.text is undefined + Stack: + fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 +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 +Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... "Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]" nsresult: "0x80004002 (NS_NOINTERFACE)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: _docShellToWindow :: line 782" data: no] +Stack: _docShellToWindow@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:782:9 +_docShellsToWindows/<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:806:38 +_docShellsToWindows@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:806:12 +_notifyDocShellsUpdate@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:810:19 +DebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1626:7 +exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14 +Line: 782, column: 0 +console.error: + Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... "Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]" nsresult: "0x80004002 (NS_NOINTERFACE)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: _docShellToWindow :: line 782" data: no] +Stack: _docShellToWindow@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:782:9 +_docShellsToWindows/<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:806:38 +_docShellsToWindows@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:806:12 +_notifyDocShellsUpdate@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:810:19 +DebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1626:7 +exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14 +Line: 782, column: 0 +Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... "Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]" nsresult: "0x80004002 (NS_NOINTERFACE)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: DebuggerProgressListener.prototype.onStateChange< :: line 1629" data: no] +Stack: DebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1629:9 +exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14 +Line: 1629, column: 0 +console.error: + Handler function DebuggerProgressListener.prototype.onStateChange threw an exception: [Exception... "Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsIWebProgress.DOMWindow]" nsresult: "0x80004002 (NS_NOINTERFACE)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js :: DebuggerProgressListener.prototype.onStateChange< :: line 1629" data: no] +Stack: DebuggerProgressListener.prototype.onStateChange<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:1629:9 +exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14 +Line: 1629, column: 0 +************************* +A coding exception was thrown and uncaught in a Task. + +Full message: TypeError: content.text is undefined +Full stack: fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +************************* +************************* +A coding exception was thrown and uncaught in a Task. + +Full message: TypeError: content.text is undefined +Full stack: fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +************************* +console.error: + Message: TypeError: content.text is undefined + Stack: + fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 +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 +************************* +A coding exception was thrown and uncaught in a Task. + +Full message: TypeError: content.text is undefined +Full stack: fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +************************* +************************* +A coding exception was thrown and uncaught in a Task. + +Full message: TypeError: content.text is undefined +Full stack: fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +************************* +console.error: + Message: TypeError: content.text is undefined + Stack: + fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 +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 +************************* +A coding exception was thrown and uncaught in a Task. + +Full message: TypeError: content.text is undefined +Full stack: fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +************************* +************************* +A coding exception was thrown and uncaught in a Task. + +Full message: TypeError: content.text is undefined +Full stack: fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +************************* +console.error: + Message: TypeError: content.text is undefined + Stack: + fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 + +fetchStylesheetFromNetworkMonitor@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:480:1 +StyleSheetActor<.fetchStylesheet<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:410:18 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +TaskImpl@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:272:3 +asyncFunction@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:246:14 +_getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:390:12 +getText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/stylesheets.js:360:12 +getAuthoredCssText@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:1249:12 +PageStyleActor<.getApplied<@resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/styles.js:461:13 +_run@resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:310:39 +process@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:922:23 +walkerLoop@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:806:7 +scheduleWalkerLoop/<@resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:742:11 +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 +1522753899601 geckodriver INFO geckodriver 0.18.0 +1522753899606 geckodriver INFO Listening on 127.0.0.1:57087 +1522753900717 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522753901670 Marionette INFO Enabled via --marionette +1522753904894 Marionette INFO Listening on port 35809 +1522753905042 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 593: TypeError: this.tablesData[table] is undefined +[Child 19121, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 19121, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 19121, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522753908886 geckodriver INFO geckodriver 0.18.0 +1522753908891 geckodriver INFO Listening on 127.0.0.1:55035 +1522753910003 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522753911596 Marionette INFO Enabled via --marionette +1522753914348 Marionette INFO Listening on port 42649 +1522753914436 Marionette WARN TLS certificate errors will be ignored for this session +1522753918298 geckodriver INFO geckodriver 0.18.0 +1522753918304 geckodriver INFO Listening on 127.0.0.1:55965 +1522753919414 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522753920272 Marionette INFO Enabled via --marionette +1522753924222 Marionette INFO Listening on port 35549 +1522753924244 Marionette WARN TLS certificate errors will be ignored for this session +1522753928004 geckodriver INFO geckodriver 0.18.0 +1522753928010 geckodriver INFO Listening on 127.0.0.1:37591 +1522753929114 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522753929952 Marionette INFO Enabled via --marionette +1522753932422 Marionette INFO Listening on port 44671 +1522753932432 Marionette WARN TLS certificate errors will be ignored for this session +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +[Child 19641, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522754042538 geckodriver INFO geckodriver 0.18.0 +1522754042543 geckodriver INFO Listening on 127.0.0.1:35099 +1522754043649 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522754044614 Marionette INFO Enabled via --marionette +1522754047078 Marionette INFO Listening on port 40861 +1522754047166 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://10.129.26.119/static/js/scriptMyContrib.js, line 14: ReferenceError: articlesContributed is not defined +JavaScript error: http://10.129.26.119/static/datatable/dataTables.bootstrap4.min.js, line 5: TypeError: f is undefined +JavaScript error: http://10.129.26.119/static/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 19819, Chrome_ChildThread] WARNING: pipe error (21): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 19819, Chrome_ChildThread] WARNING: pipe error (35): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 19819, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-_6vbC4/firefox-59.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1522754103814 geckodriver INFO geckodriver 0.18.0 +1522754103817 geckodriver INFO Listening on 127.0.0.1:33169 +1522754104924 geckodriver::marionette INFO Starting browser /usr/bin/firefox with args ["-marionette"] +1522754107232 Marionette INFO Enabled via --marionette +1522754110692 Marionette INFO Listening on port 36831 +1522754110752 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 325: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables] +JavaScript error: jar:file:///usr/lib/firefox/omni.ja!/components/nsUrlClassifierListManager.js, line 325: NS_ERROR_NOT_INITIALIZED: Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIUrlClassifierDBService.getTables] +1530266829890 geckodriver INFO geckodriver 0.19.1 +1530266829906 geckodriver INFO Listening on 127.0.0.1:35577 +1530266831060 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.JRwb9Mq0u3oj" +1530266835307 Marionette INFO Listening on port 43899 +1530266835388 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 574: 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 352: 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 352: 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/communities/, line 346: 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/community-view/1/, line 463: ReferenceError: None is not defined +1530266962625 geckodriver INFO geckodriver 0.19.1 +1530266962628 geckodriver INFO Listening on 127.0.0.1:59723 +1530266963735 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.f9bHBGm35xvd" +1530266966940 Marionette INFO Listening on port 35803 +1530266966946 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 574: 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 352: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +1530269648271 geckodriver INFO geckodriver 0.19.1 +1530269648297 geckodriver INFO Listening on 127.0.0.1:57005 +1530269649440 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.yHdlE9SVsSl3" +1530269653621 Marionette INFO Listening on port 43945 +1530269653668 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: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://localhost:8000/, line 574: 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 352: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +[Child 28218, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 28218, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530270056402 geckodriver INFO geckodriver 0.19.1 +1530270056405 geckodriver INFO Listening on 127.0.0.1:40287 +1530270057516 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.8G3BksESIhNk" +1530270060722 Marionette INFO Listening on port 43737 +1530270060730 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 574: 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 352: 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 352: 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 +1530270245201 geckodriver INFO geckodriver 0.19.1 +1530270245204 geckodriver INFO Listening on 127.0.0.1:38533 +1530270246315 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.TXMTJ7MThbz3" +1530270249734 Marionette INFO Listening on port 43837 +1530270249831 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 574: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 352: 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 352: 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/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/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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +[Child 29486, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 29486, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +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: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +JavaScript error: http://localhost:8000/, line 574: 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 352: 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/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 +1530271655501 geckodriver INFO geckodriver 0.19.1 +1530271655506 geckodriver INFO Listening on 127.0.0.1:55837 +1530271656618 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.eLXlSAxdLFvb" +1530271660163 Marionette INFO Listening on port 39631 +1530271660242 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 574: 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 352: 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 352: 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/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/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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +1530271864716 geckodriver INFO geckodriver 0.19.1 +1530271864721 geckodriver INFO Listening on 127.0.0.1:54161 +1530271865834 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.f8jdLnimHnkL" +1530271869184 Marionette INFO Listening on port 35467 +1530271869250 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 574: 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 352: 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 352: 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/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 +[Child 31022, Chrome_ChildThread] WARNING: pipe error (22): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 31022, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530272061633 geckodriver INFO geckodriver 0.19.1 +1530272061638 geckodriver INFO Listening on 127.0.0.1:57143 +1530272062752 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.WTwVsh8TzSF1" +1530272066113 Marionette INFO Listening on port 40047 +1530272066170 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 574: 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 352: 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 352: 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 +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" +1530272165530 geckodriver INFO geckodriver 0.19.1 +1530272165533 geckodriver INFO Listening on 127.0.0.1:46821 +1530272166668 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.5SuLY4BNfYSI" +Handler function NetworkEventActorProxy.addSecurityInfo threw an exception: [Exception... "Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIMessageSender.sendAsyncMessage]" nsresult: "0xc1f30001 (NS_ERROR_NOT_INITIALIZED)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js :: NetworkEventActorProxy.methodFactory/< :: line 1875" data: no] +Stack: NetworkEventActorProxy.methodFactory/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:1875:5 +exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14 +NetworkResponseListener.prototype._getSecurityInfo<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:521:5 +exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14 +onStartRequest@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:441:5 +Line: 1875, column: 0 +console.error: "Handler function NetworkEventActorProxy.addSecurityInfo threw an exception: [Exception... \"Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIMessageSender.sendAsyncMessage]\" nsresult: \"0xc1f30001 (NS_ERROR_NOT_INITIALIZED)\" location: \"JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js :: NetworkEventActorProxy.methodFactory/< :: line 1875\" data: no]\nStack: NetworkEventActorProxy.methodFactory/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:1875:5\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\nNetworkResponseListener.prototype._getSecurityInfo<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:521:5\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\nonStartRequest@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:441:5\nLine: 1875, column: 0" +Handler function NetworkEventActorProxy.addResponseContent threw an exception: [Exception... "Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIMessageSender.sendAsyncMessage]" nsresult: "0xc1f30001 (NS_ERROR_NOT_INITIALIZED)" location: "JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js :: NetworkEventActorProxy.methodFactory/< :: line 1875" data: no] +Stack: NetworkEventActorProxy.methodFactory/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:1875:5 +exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14 +_onComplete@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:651:5 +onStreamClose@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:608:7 +onInputStreamReady@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:702:7 +Line: 1875, column: 0 +console.error: "Handler function NetworkEventActorProxy.addResponseContent threw an exception: [Exception... \"Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIMessageSender.sendAsyncMessage]\" nsresult: \"0xc1f30001 (NS_ERROR_NOT_INITIALIZED)\" location: \"JS frame :: resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js :: NetworkEventActorProxy.methodFactory/< :: line 1875\" data: no]\nStack: NetworkEventActorProxy.methodFactory/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:1875:5\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\n_onComplete@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:651:5\nonStreamClose@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:608:7\nonInputStreamReady@resource://devtools/shared/base-loader.js -> resource://devtools/shared/webconsole/network-monitor.js:702:7\nLine: 1875, column: 0" +1530272170351 Marionette INFO Listening on port 33575 +1530272170384 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 574: 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 352: 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 352: 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/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 +[Child 31739, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 31739, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530272354955 geckodriver INFO geckodriver 0.19.1 +1530272354960 geckodriver INFO Listening on 127.0.0.1:40981 +1530272356070 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.dhybEaOkOyjK" +1530272359682 Marionette INFO Listening on port 35397 +1530272359794 Marionette WARN TLS certificate errors will be ignored for this session +1530272442762 geckodriver INFO geckodriver 0.19.1 +1530272442766 geckodriver INFO Listening on 127.0.0.1:48973 +1530272443883 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.NuClYgHRvesT" +1530272447480 Marionette INFO Listening on port 34611 +1530272447499 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart 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 574: 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 352: 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 352: 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 +1530272733359 geckodriver INFO geckodriver 0.19.1 +1530272733362 geckodriver INFO Listening on 127.0.0.1:53713 +1530272734515 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.SD5wyGNWxxPp" +1530272738359 Marionette INFO Listening on port 40387 +1530272738431 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 574: 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 352: 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 352: 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 +[Child 304, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 304, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530297325400 geckodriver INFO geckodriver 0.19.1 +1530297325404 geckodriver INFO Listening on 127.0.0.1:47555 +1530297326521 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.qHEmLasjvkGa" +1530297330007 Marionette INFO Listening on port 37865 +1530297330044 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 574: 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 352: 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 352: 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 +[Child 9753, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 9753, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530297396656 geckodriver INFO geckodriver 0.19.1 +1530297396660 geckodriver INFO Listening on 127.0.0.1:33629 +1530297397772 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.ijhE34PWVip1" +1530297401250 Marionette INFO Listening on port 37157 +1530297401291 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 574: 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 352: 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 352: 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 +[Child 10039, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 10039, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530297554831 geckodriver INFO geckodriver 0.19.1 +1530297554836 geckodriver INFO Listening on 127.0.0.1:51505 +1530297555942 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.eiFiHW5DkVsv" +1530297559361 Marionette INFO Listening on port 42431 +1530297559470 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 574: 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 352: 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 352: 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 +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +[Child 10384, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 10347, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 10347, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530299384899 geckodriver INFO geckodriver 0.19.1 +1530299384905 geckodriver INFO Listening on 127.0.0.1:37205 +1530299386015 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.RiJCroo4aCpw" +1530299389336 Marionette INFO Listening on port 40567 +1530299389425 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 574: 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 352: 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 352: 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 +1530299495307 geckodriver INFO geckodriver 0.19.1 +1530299495310 geckodriver INFO Listening on 127.0.0.1:54549 +1530299496421 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.euqu4LtxhMUC" +1530299499797 Marionette INFO Listening on port 46665 +1530299499834 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 574: 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 352: 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 +[Child 11771, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 11771, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530299556053 geckodriver INFO geckodriver 0.19.1 +1530299556058 geckodriver INFO Listening on 127.0.0.1:39705 +1530299557170 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.1LIoaFKUwdmD" +1530299560657 Marionette INFO Listening on port 43093 +1530299560686 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 574: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +[Child 12044, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 12044, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530299627089 geckodriver INFO geckodriver 0.19.1 +1530299627094 geckodriver INFO Listening on 127.0.0.1:41375 +1530299628205 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.PN49JFUmnRFh" +1530299632615 Marionette INFO Listening on port 40267 +1530299632723 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 574: 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 352: 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/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 +1530299715570 geckodriver INFO geckodriver 0.19.1 +1530299715575 geckodriver INFO Listening on 127.0.0.1:32871 +1530299716693 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.6q2LKIJfPXJU" +1530299720281 Marionette INFO Listening on port 38697 +1530299720311 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 574: 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 352: 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/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 +1530299797016 geckodriver INFO geckodriver 0.19.1 +1530299797021 geckodriver INFO Listening on 127.0.0.1:54327 +1530299798136 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.YHNIjdgfmRP9" +1530299801696 Marionette INFO Listening on port 45211 +1530299801757 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 +1530299829434 geckodriver INFO geckodriver 0.19.1 +1530299829438 geckodriver INFO Listening on 127.0.0.1:51295 +1530299830553 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.QafcYhyfCpcu" +1530299834083 Marionette INFO Listening on port 40405 +1530299834165 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 574: 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 352: 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 +[Child 13177, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 13177, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530299883796 geckodriver INFO geckodriver 0.19.1 +1530299883799 geckodriver INFO Listening on 127.0.0.1:39789 +1530299884910 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.I1JbSX5qkRuK" +1530299888776 Marionette INFO Listening on port 41557 +1530299888835 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 574: 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 352: 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 +[Child 13716, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 13716, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530299978679 geckodriver INFO geckodriver 0.19.1 +1530299978683 geckodriver INFO Listening on 127.0.0.1:59187 +1530299979809 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.4ObcG9wWYQbz" +1530299983281 Marionette INFO Listening on port 38351 +1530299983328 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 574: 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 352: 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 +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" +1530300218692 geckodriver INFO geckodriver 0.19.1 +1530300218697 geckodriver INFO Listening on 127.0.0.1:35461 +1530300219803 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.nZSzIQoDblik" +1530300223427 Marionette INFO Listening on port 39949 +1530300223523 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 574: 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 352: 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/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 +1530300307692 geckodriver INFO geckodriver 0.19.1 +1530300307695 geckodriver INFO Listening on 127.0.0.1:37401 +1530300308815 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.gmxDd9jnFVDh" +1530300312493 Marionette INFO Listening on port 33561 +1530300312527 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 574: 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 352: 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/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +1530300398872 geckodriver INFO geckodriver 0.19.1 +1530300398876 geckodriver INFO Listening on 127.0.0.1:44571 +1530300399990 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.RAjA1Q7Jq3iy" +1530300403542 Marionette INFO Listening on port 46131 +1530300403602 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 574: 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 352: 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/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +[Child 17255, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 17255, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530300646776 geckodriver INFO geckodriver 0.19.1 +1530300646780 geckodriver INFO Listening on 127.0.0.1:33387 +1530300647900 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.cUdYDboKTYdn" +1530300651517 Marionette INFO Listening on port 35877 +1530300651617 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 574: 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 352: 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 +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" +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) + +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) + +1530304543333 geckodriver INFO geckodriver 0.19.1 +1530304543350 geckodriver INFO Listening on 127.0.0.1:50425 +1530304544492 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.m7hC7lBMPLQJ" +1530304548050 Marionette INFO Listening on port 38019 +1530304548104 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 574: 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 352: 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 +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" + +###!!! [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 + +1530304920988 geckodriver INFO geckodriver 0.19.1 +1530304920995 geckodriver INFO Listening on 127.0.0.1:54813 +1530304922135 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.xf2p4nRUxwd4" +1530304925829 Marionette INFO Listening on port 44931 +1530304925853 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 574: 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 352: 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 +1530305131879 geckodriver INFO geckodriver 0.19.1 +1530305131884 geckodriver INFO Listening on 127.0.0.1:45549 +1530305132993 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.Q7pZ7w1SJ3H6" +1530305136362 Marionette INFO Listening on port 38463 +1530305136410 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 574: 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 352: 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/communities/, line 346: 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/community-view/1/, line 468: 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/group-view/3/, line 448: ReferenceError: None is not defined +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530305181077 geckodriver INFO geckodriver 0.19.1 +1530305181081 geckodriver INFO Listening on 127.0.0.1:58907 +1530305182303 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.0H8A16rqxTDR" +1530305186286 Marionette INFO Listening on port 42555 +1530305186321 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 574: 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 352: 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 +[Child 27393, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 27393, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530305260504 geckodriver INFO geckodriver 0.19.1 +1530305260509 geckodriver INFO Listening on 127.0.0.1:44645 +1530305261634 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.vnAixRayu8X3" +1530305265339 Marionette INFO Listening on port 33277 +1530305265348 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 574: 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 352: 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 +[Child 27700, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 27700, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530305359282 geckodriver INFO geckodriver 0.19.1 +1530305359287 geckodriver INFO Listening on 127.0.0.1:33109 +1530305360403 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.szy79hdR005L" +1530305363938 Marionette INFO Listening on port 44281 +1530305364026 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 574: 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 352: 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 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530305428742 geckodriver INFO geckodriver 0.19.1 +1530305428747 geckodriver INFO Listening on 127.0.0.1:54215 +1530305429863 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.aXzByGgJJ8TK" +1530305433266 Marionette INFO Listening on port 37187 +1530305433294 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 574: 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 352: 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 +[Child 28363, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 28363, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530305476763 geckodriver INFO geckodriver 0.19.1 +1530305476767 geckodriver INFO Listening on 127.0.0.1:50107 +1530305477882 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.FzeZA7v2mnIQ" +1530305481421 Marionette INFO Listening on port 42343 +1530305481505 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 574: 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 352: 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 +[Child 28628, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530305561797 geckodriver INFO geckodriver 0.19.1 +1530305561802 geckodriver INFO Listening on 127.0.0.1:51531 +1530305562921 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.sdEeIH1USLgk" +1530305566546 Marionette INFO Listening on port 43063 +1530305566636 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 574: 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 352: 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/, line 574: ReferenceError: None is not defined +1530307310275 geckodriver INFO geckodriver 0.19.1 +1530307310303 geckodriver INFO Listening on 127.0.0.1:49229 +1530307311478 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.o5Tp7PC0Fwri" +1530307316191 Marionette INFO Listening on port 40855 +1530307316208 Marionette WARN TLS certificate errors will be ignored for this session +1530307404843 geckodriver INFO geckodriver 0.19.1 +1530307404847 geckodriver INFO Listening on 127.0.0.1:48557 +1530307405959 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.JteWNiGVYqiC" +1530307409666 Marionette INFO Listening on port 33599 +1530307409695 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: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://localhost:8000/, line 574: 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 352: 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/communities/, line 346: 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/community-view/1/, line 468: ReferenceError: None is not defined +1530307517532 geckodriver INFO geckodriver 0.19.1 +1530307517536 geckodriver INFO Listening on 127.0.0.1:43431 +1530307518646 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.impX1iFt01qT" +1530307522065 Marionette INFO Listening on port 39539 +1530307522161 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 574: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 352: 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/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/manage-resource/3/, line 484: TypeError: document.forms[''] 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" +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" +1530307764072 geckodriver INFO geckodriver 0.19.1 +1530307764076 geckodriver INFO Listening on 127.0.0.1:37575 +1530307765196 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.mRCPxmftdtTT" +1530307769085 Marionette INFO Listening on port 42701 +1530307769138 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 574: ReferenceError: None is not defined +JavaScript error: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +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 +1530307914062 geckodriver INFO geckodriver 0.19.1 +1530307914067 geckodriver INFO Listening on 127.0.0.1:38665 +1530307915222 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.WbzjpfNnfkdk" +1530307919429 Marionette INFO Listening on port 37259 +1530307919461 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: https://platform.twitter.com/widgets/widget_iframe.bed9e19e565ca3b578705de9e73c29ed.html?origin=http%3A%2F%2Flocalhost%3A8000&settingsEndpoint=https%3A%2F%2Fsyndication.twitter.com%2Fsettings, line 12: Error: Network error. +JavaScript error: http://localhost:8000/, line 574: 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 352: 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/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/manage-resource/3/, line 494: TypeError: document.forms[''] is undefined +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 +[Child 1118, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 1118, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530789778379 geckodriver INFO geckodriver 0.19.1 +1530789778406 geckodriver INFO Listening on 127.0.0.1:44035 +1530789779537 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.YiEpUBpvBhmR" +1530789783639 Marionette INFO Listening on port 45519 +1530789783661 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 +1530789841599 geckodriver INFO geckodriver 0.19.1 +1530789841602 geckodriver INFO Listening on 127.0.0.1:43923 +1530789842714 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.ZHcOs0ShxQ1F" +1530789846126 Marionette INFO Listening on port 42931 +1530789846226 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 574: 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 352: 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 352: 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/communities/, line 346: ReferenceError: None is not defined +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530789891837 geckodriver INFO geckodriver 0.19.1 +1530789891840 geckodriver INFO Listening on 127.0.0.1:47545 +1530789892947 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.d0UV2uJwon0L" +1530789896270 Marionette INFO Listening on port 41529 +1530789896374 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 574: 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 352: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +[Child 9599, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 9599, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530790276888 geckodriver INFO geckodriver 0.19.1 +1530790276892 geckodriver INFO Listening on 127.0.0.1:39611 +1530790278003 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.9ZWZiqGYzmuq" +1530790281265 Marionette INFO Listening on port 41209 +1530790281317 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 574: 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 352: 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 352: 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/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 +[Child 10339, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 10339, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530790862730 geckodriver INFO geckodriver 0.19.1 +1530790862734 geckodriver INFO Listening on 127.0.0.1:56975 +1530790863855 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.KjA6n9oBh37A" +1530790867517 Marionette INFO Listening on port 37979 +1530790867580 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 574: 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 352: 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 352: 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/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 +[Child 11265, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 11265, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530791151093 geckodriver INFO geckodriver 0.19.1 +1530791151097 geckodriver INFO Listening on 127.0.0.1:53189 +1530791152209 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.nvPUzU3PnswU" +1530791155972 Marionette INFO Listening on port 42617 +1530791156022 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 574: 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 352: 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 352: 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/assets/plugins/script.js, line 4: TypeError: $(...).appear is not a function +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/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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +1530791227555 geckodriver INFO geckodriver 0.19.1 +1530791227559 geckodriver INFO Listening on 127.0.0.1:35169 +1530791228681 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.ZKKQ5nC39vqW" +1530791232194 Marionette INFO Listening on port 42435 +1530791232291 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 574: 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 352: 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 352: 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/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 +[Child 12315, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530791401687 geckodriver INFO geckodriver 0.19.1 +1530791401692 geckodriver INFO Listening on 127.0.0.1:39533 +1530791402837 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.Z2qm6G1Hisvo" +1530791406697 Marionette INFO Listening on port 44393 +1530791406778 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 574: 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 352: 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 352: 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 +*** UTM:SVC TimerManager:registerTimer called after profile-before-change notification. Ignoring timer registration for id: telemetry_modules_ping +1530805911382 geckodriver INFO geckodriver 0.19.1 +1530805911387 geckodriver INFO Listening on 127.0.0.1:52335 +1530805912501 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.aCdDD8pPk8JQ" +1530805915984 Marionette INFO Listening on port 37167 +1530805916021 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 574: 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 352: 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 352: 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 +[Child 14402, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14402, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530815438004 geckodriver INFO geckodriver 0.19.1 +1530815438042 geckodriver INFO Listening on 127.0.0.1:58841 +1530815439184 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.rXkaSo724vcn" +1530815444394 Marionette INFO Listening on port 46737 +1530815444447 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 574: 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 352: 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 352: 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/, line 574: ReferenceError: None is not defined +1530815548477 geckodriver INFO geckodriver 0.19.1 +1530815548481 geckodriver INFO Listening on 127.0.0.1:50191 +1530815549597 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.T2O4kNLy6CN5" +1530815553108 Marionette INFO Listening on port 33841 +1530815553208 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 574: 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 352: 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 352: 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 +1530815846963 geckodriver INFO geckodriver 0.19.1 +1530815846966 geckodriver INFO Listening on 127.0.0.1:47907 +1530815848080 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.YoD22H3nMEH7" +1530815851459 Marionette INFO Listening on port 39611 +1530815851512 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 574: 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 352: 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 +[Child 8374, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 8374, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530815991136 geckodriver INFO geckodriver 0.19.1 +1530815991139 geckodriver INFO Listening on 127.0.0.1:36887 +1530815992253 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.ollyzVNl6SrW" +1530815995636 Marionette INFO Listening on port 35743 +1530815995686 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 574: 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 352: 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 +[Child 8742, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 8742, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530816180345 geckodriver INFO geckodriver 0.19.1 +1530816180348 geckodriver INFO Listening on 127.0.0.1:39225 +1530816181462 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.OK0lDiTeBdVw" +1530816184926 Marionette INFO Listening on port 35797 +1530816184979 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 574: 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 352: 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 352: 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 +1530816278810 addons.productaddons WARN Failed downloading XML, status: 0, reason: error +1530816373291 geckodriver INFO geckodriver 0.19.1 +1530816373296 geckodriver INFO Listening on 127.0.0.1:35071 +1530816374446 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.nQISj9620xua" +1530816378667 Marionette INFO Listening on port 39327 +1530816378759 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 574: 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 352: 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 +[Child 9593, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +[Child 9593, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530816614607 geckodriver INFO geckodriver 0.19.1 +1530816614610 geckodriver INFO Listening on 127.0.0.1:52977 +1530816615738 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.SLSKOeOXG0U0" +1530816619381 Marionette INFO Listening on port 41909 +1530816619462 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 574: 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 352: 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/js/jquery-3.2.1.min.js, line 4: TypeError: a.indexOf is not a function +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/jquery-3.2.1.min.js, line 2: Error: Syntax error, unrecognized expression: # +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 +[Child 9963, Chrome_ChildThread] WARNING: pipe error (20): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 9963, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530817022545 geckodriver INFO geckodriver 0.19.1 +1530817022549 geckodriver INFO Listening on 127.0.0.1:59453 +1530817023655 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.0VhrcItnXghv" +1530817027320 Marionette INFO Listening on port 43661 +1530817027372 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 574: 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 352: 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/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 +[Child 10450, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 10450, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530817380486 geckodriver INFO geckodriver 0.19.1 +1530817380490 geckodriver INFO Listening on 127.0.0.1:59507 +1530817381599 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.MajjBwIUj7Uo" +1530817384923 Marionette INFO Listening on port 43759 +1530817385009 Marionette WARN TLS certificate errors will be ignored for this session +[GFX1-]: Receive IPC close with reason=AbnormalShutdown +[Child 10937, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530817515805 geckodriver INFO geckodriver 0.19.1 +1530817515809 geckodriver INFO Listening on 127.0.0.1:33093 +1530817516913 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.UL7Fx7jE11Az" +1530817524884 geckodriver INFO geckodriver 0.19.1 +1530817524889 geckodriver INFO Listening on 127.0.0.1:47633 +1530817525992 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.UvGd9i3RBd5V" +1530817529708 Marionette INFO Listening on port 38043 +1530817529803 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 +1530817610065 geckodriver INFO geckodriver 0.19.1 +1530817610068 geckodriver INFO Listening on 127.0.0.1:35459 +1530817611187 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.XMwQunLyJJ5d" +1530817614501 Marionette INFO Listening on port 42441 +1530817614600 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 574: 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 352: 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 +1530817750360 geckodriver INFO geckodriver 0.19.1 +1530817750364 geckodriver INFO Listening on 127.0.0.1:39473 +1530817751478 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.YHBZlqj79OZL" +1530817754843 Marionette INFO Listening on port 33501 +1530817754891 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 574: 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 352: 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/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 +1530818204533 geckodriver INFO geckodriver 0.19.1 +1530818204536 geckodriver INFO Listening on 127.0.0.1:34551 +1530818205647 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.yHOqOq0mZr3E" +1530818209159 Marionette INFO Listening on port 35013 +1530818209168 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 574: 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 352: 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/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 +1530818432377 geckodriver INFO geckodriver 0.19.1 +1530818432380 geckodriver INFO Listening on 127.0.0.1:40247 +1530818433513 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.U1v9KnruyXEa" +1530818436971 Marionette INFO Listening on port 45503 +1530818437034 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 574: 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 352: 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 +1530818628750 geckodriver INFO geckodriver 0.19.1 +1530818628755 geckodriver INFO Listening on 127.0.0.1:55633 +1530818629860 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.9vlhibptEz9f" +1530818633336 Marionette INFO Listening on port 41599 +1530818633379 Marionette WARN TLS certificate errors will be ignored for this session +JavaScript error: http://localhost:8000/static/js/scriptMyContrib.js, line 8: ReferenceError: Chart 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 574: 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 352: 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 +1530818793251 geckodriver INFO geckodriver 0.19.1 +1530818793254 geckodriver INFO Listening on 127.0.0.1:52473 +1530818794368 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.rcfxdvtBMCSI" +1530818797891 Marionette INFO Listening on port 44647 +1530818797984 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 574: 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 352: 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 +[Child 13435, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 13435, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530818919207 geckodriver INFO geckodriver 0.19.1 +1530818919210 geckodriver INFO Listening on 127.0.0.1:49669 +1530818920322 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.yyH8b0BL2D81" +1530818923697 Marionette INFO Listening on port 33381 +1530818923733 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 574: 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 352: 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 +[Child 13744, Chrome_ChildThread] WARNING: pipe error (19): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 13744, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530819120178 geckodriver INFO geckodriver 0.19.1 +1530819120181 geckodriver INFO Listening on 127.0.0.1:46031 +1530819121288 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.ROuhMgoBHzTV" +1530819124902 Marionette INFO Listening on port 36459 +1530819125007 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 574: 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 352: 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 +[Child 14167, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14167, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +1530819230900 geckodriver INFO geckodriver 0.19.1 +1530819230903 geckodriver INFO Listening on 127.0.0.1:44055 +1530819232015 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-profile" "/tmp/rust_mozprofile.NXPByCSuThAR" +1530819235461 Marionette INFO Listening on port 41661 +1530819235536 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 574: 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 352: 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/, line 574: ReferenceError: None is not defined +[Child 14452, Chrome_ChildThread] WARNING: pipe error (18): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 +[Child 14452, Chrome_ChildThread] WARNING: pipe error (3): Connection reset by peer: file /build/firefox-d34xn2/firefox-60.0.2+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353 diff --git a/event-logs-testing/group_create.py b/event-logs-testing/group_create.py new file mode 100644 index 0000000..3f13ca4 --- /dev/null +++ b/event-logs-testing/group_create.py @@ -0,0 +1,62 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class signup(unittest.TestCase): + + def setUp(self): + print("Note that user should be a member of community that you select.") + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.community_id = raw_input("Enter a community id: ") + self.group_name = raw_input("Enter the name of group you want to create: ") + + def test_group_create(self): + url_api = self.url_basic + 'logapi/event/group/create/' + result = requests.get(url_api, headers=self.headers).json() + new_result = {} + for key, value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + driver = webdriver.Firefox() + driver.maximize_window() # For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/' + str(self.community_id) + '/"]').click() + driver.find_element_by_xpath("//button [@type='button' and @data-target='#modalCreate']").click() + driver.find_element_by_xpath("//button [@type='button' and @data-target='#modalCreateGroup']").click() + driver.find_element_by_id("exampleCheck2").click() + driver.find_element_by_id("groupCreate").click() + elem = driver.find_element_by_id("title") + elem.send_keys(self.group_name) + driver.find_element_by_id("grpCreate").click() + url_api = self.url_basic + 'logapi/event/group/create/' + result = requests.get(url_api, headers=self.headers).json() + new_result = {} + for key, value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"] == total_hits + 1): + self.assertEqual(data[0]["event_name"],"event.group.create") + self.assertEqual(data[0]["event"]["community-id"], self.community_id) + self.assertEqual(data[0]["event"]["group-name"], self.group_name) + else: + self.assertFalse(True) + driver.quit() + + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/group_manage.py b/event-logs-testing/group_manage.py new file mode 100644 index 0000000..ba16aeb --- /dev/null +++ b/event-logs-testing/group_manage.py @@ -0,0 +1,63 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + print("Note that user should be a member of group") + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.comm_id = raw_input("Enter Community id: ") + self.grp_id = raw_input("Enter group id: ") + + def test_event_group_view(self): + url_api = self.url_basic + 'logapi/event/group/manage/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/'+ self.grp_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/manage_group/'+ self.grp_id +'/"]').click() + elem = driver.find_element_by_id("username") + elem.send_keys(self.user) + driver.find_element_by_id("add_user_id").click() + + url_api = self.url_basic + 'logapi/event/group/manage/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.group.manage") + self.assertEqual(data[0]["event"]["role"], "author") + self.assertEqual(data[0]["event"]["invitation-username"], self.user) + self.assertEqual(data[0]["event"]["status"], "add") + + driver.quit() + + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/group_unsubscribe.py b/event-logs-testing/group_unsubscribe.py new file mode 100644 index 0000000..f8a4921 --- /dev/null +++ b/event-logs-testing/group_unsubscribe.py @@ -0,0 +1,59 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + print("Note that user should be a part of community and group belonging to this community: ") + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.comm_id = raw_input("Enter id of community whose group you wish to leave: ") + self.grp_id = raw_input("Enter id of group you want to leave: ") + + def test_group_unsubscribe(self): + url_api = self.url_basic + 'logapi/event/group/unsubscribe/' + result = requests.get(url_api, headers=self.headers).json() + new_result = {} + for key, value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/' + self.comm_id + '/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/' + self.grp_id + '/"]').click() + driver.find_element_by_xpath("//button [@type='button' and @data-target='#exampleModal']").click() + driver.find_element_by_id("groupUnsubscribe").click() + + url_api = self.url_basic + 'logapi/event/group/unsubscribe/' + result = requests.get(url_api, headers=self.headers).json() + new_result = {} + for key, value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"] == total_hits + 1): + self.assertEqual(data[0]["event_name"],"event.group.unsubscribe") + self.assertEqual(data[0]["event"]["group-id"], self.grp_id) + else: + self.assertFalse(True) + + driver.quit() + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/group_view.py b/event-logs-testing/group_view.py new file mode 100644 index 0000000..419585d --- /dev/null +++ b/event-logs-testing/group_view.py @@ -0,0 +1,55 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.comm_id = raw_input("Enter Community id: ") + self.grp_id = raw_input("Enter group id: ") + + def test_event_group_view(self): + url_api = self.url_basic + 'logapi/event/group/view/' + self.grp_id + '/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/'+ self.comm_id +'/"]').click() + driver.find_element_by_xpath('//a [@href="/group-view/'+ self.grp_id +'/"]').click() + url_api = self.url_basic + 'logapi/event/group/view/' + self.grp_id + '/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.group.view") + self.assertEqual(data[0]["event"]["group-id"], self.grp_id) + + driver.quit() + + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/profile_view.py b/event-logs-testing/profile_view.py new file mode 100644 index 0000000..45fedca --- /dev/null +++ b/event-logs-testing/profile_view.py @@ -0,0 +1,59 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + self.community_id = raw_input("Enter a community id: ") + self.username = raw_input("Enter a username which is part of this community: ") + + def test_profile_view(self): + url_api = self.url_basic + "logapi/event/profile/view/" + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + driver.find_element_by_xpath('//a [@href="/communities/"]').click() + driver.find_element_by_xpath('//a [@href="/community-view/' + self.community_id + '/"]').click() + driver.find_element_by_xpath('//a [@href="/userprofile/' + self.username + '/"]').click() + + url_api = self.url_basic + 'logapi/event/profile/view/' + result = requests.get(url_api, headers = self.headers).json() + + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.profile.view") + self.assertEqual(data[0]["event"]["user-visited"], self.username) + else: + self.assertFlase(True) + + driver.quit() + + +if __name__ == '__main__': + unittest.main() \ No newline at end of file diff --git a/event-logs-testing/user_login.py b/event-logs-testing/user_login.py new file mode 100644 index 0000000..c0f1c24 --- /dev/null +++ b/event-logs-testing/user_login.py @@ -0,0 +1,51 @@ +import unittest +from selenium import webdriver +import requests +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + + def test_user_login(self): + url_api = self.url_basic + 'logapi/event/user/login/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.get("http://localhost:8000/") + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + url_api = self.url_basic + 'logapi/event/user/login/' + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.user.login") + self.assertEqual(data[0]["event"]["username"], self.user) + else: + self.assertFalse(True) + + driver.quit() + + +if __name__ == '__main__': + unittest.main() diff --git a/event-logs-testing/user_logout.py b/event-logs-testing/user_logout.py new file mode 100644 index 0000000..2c74402 --- /dev/null +++ b/event-logs-testing/user_logout.py @@ -0,0 +1,59 @@ +import unittest +from selenium import webdriver +import requests +from selenium.webdriver.support.ui import Select +from decouple import config + +class test(unittest.TestCase): + + def setUp(self): + self.user_id = config("EVENT_LOGS_USER_ID") + self.user = config("EVENT_LOGS_USER") + self.pwd = config("EVENT_LOGS_PASSWORD") + self.url_basic = "http://" + config("IP_ADDRESS") + ":" + config("EVENT_LOGS_PORT") + "/" + self.token = config("EVENT_API_TOKEN") #This should be generated by tester + self.headers={'Authorization': 'Token ' + str(self.token)} + + def test_user_logout(self): + url_api = self.url_basic + 'logapi/event/user/logout/' + + result = requests.get(url_api, headers = self.headers).json() + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + if(new_result["status code"] == 200): + data = new_result["result"] + total_hits = new_result["total hits"] + + driver = webdriver.Firefox() + driver.maximize_window() #For maximizing window + driver.get(self.url_basic) + driver.find_element_by_xpath('//a [@href="/login/?next=/"]').click() + elem = driver.find_element_by_id("id_username") + elem.send_keys(self.user) + elem = driver.find_element_by_id("id_password") + elem.send_keys(self.pwd) + driver.find_element_by_class_name('btn-block').click() + + driver.get(self.url_basic+"logout/") + + url_api = self.url_basic + 'logapi/event/user/logout/' + result = requests.get(url_api, headers = self.headers).json() + + new_result={} + for key,value in result.iteritems(): + new_result[key.lower()] = value + + if (new_result["status code"] == 200): + data = new_result["result"] + if (new_result["total hits"]== total_hits+1): + self.assertEqual(data[0]["event_name"],"event.user.logout") + self.assertEqual(data[0]["event"]["user-id"], int(self.user_id)) + else: + self.assertFalse(True) + + driver.quit() + + +if __name__ == '__main__': + unittest.main() diff --git a/testcases/LoginCorrectCredentialsTest.py b/testcases/LoginCorrectCredentialsTest.py index 2bfa647..b313501 100644 --- a/testcases/LoginCorrectCredentialsTest.py +++ b/testcases/LoginCorrectCredentialsTest.py @@ -2,16 +2,22 @@ import unittest from selenium import webdriver +from selenium.webdriver.common.desired_capabilities import DesiredCapabilities -class LoginCorrect(unittest.TestCase): +class LoginCorrect(unittest.TestCase): + def setUp(self): - self.driver = webdriver.Firefox() + self.driver = webdriver.Remote(command_executor='http://10.129.132.104:4444/wd/hub', desired_capabilities=DesiredCapabilities.FIREFOX) + #self.driver = webdriver.Firefox() + def test_LoginCorrect(self): user ="testuser" pwd= "collaborative" - driver = webdriver.Firefox() + driver = webdriver.Remote(command_executor='http://10.129.132.104:4444/wd/hub', desired_capabilities=DesiredCapabilities.FIREFOX) + + #driver = webdriver.Firefox() driver.get("http://10.129.26.119//login") elem = driver.find_element_by_id("id_username") elem.send_keys(user)