Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
Lab 1 CSCI40
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sylvane Suminguit
Lab 1 CSCI40
Commits
747f0e42
Commit
747f0e42
authored
Mar 07, 2020
by
DuckHuntDuoPROgrammer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added an html file
parent
7b403102
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
50 additions
and
1 deletion
+50
-1
geckodriver.log
geckodriver.log
+31
-0
__init__.cpython-36.pyc
heroes/__pycache__/__init__.cpython-36.pyc
+0
-0
views.cpython-36.pyc
heroes/__pycache__/views.cpython-36.pyc
+0
-0
lab1_functional_test.py
lab1_functional_test.py
+2
-1
willowisptest.html
willowisptest.html
+17
-0
No files found.
geckodriver.log
View file @
747f0e42
...
...
@@ -15,3 +15,34 @@ JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't fin
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1583591443678 mozrunner::runner INFO Running command: "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Sylvane\\AppData\\Local\\Temp\\rust_mozprofileLOYh4I"
JavaScript error: 173303065.cfg, line 4: ReferenceError: Components is not defined
1583591444519 addons.webextension.doh-rollout@mozilla.org WARN Loading extension 'doh-rollout@mozilla.org': Reading manifest: Invalid extension permission: networkStatus
1583591445105 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: mozillaAddons
1583591445105 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: telemetry
1583591445105 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: resource://pdf.js/
1583591445105 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1583591447914 Marionette INFO Listening on port 62190
1583591448057 Marionette WARN TLS certificate errors will be ignored for this session
1583591448527 Marionette INFO Stopped listening on port 62190
###!!! [Child][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
1583591856372 mozrunner::runner INFO Running command: "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe" "-marionette" "-foreground" "-no-remote" "-profile" "C:\\Users\\Sylvane\\AppData\\Local\\Temp\\rust_mozprofileBX0ch2"
JavaScript error: 173303065.cfg, line 4: ReferenceError: Components is not defined
1583591856920 addons.webextension.doh-rollout@mozilla.org WARN Loading extension 'doh-rollout@mozilla.org': Reading manifest: Invalid extension permission: networkStatus
1583591857579 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: mozillaAddons
1583591857580 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: telemetry
1583591857580 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: resource://pdf.js/
1583591857580 addons.webextension.screenshots@mozilla.org WARN Loading extension 'screenshots@mozilla.org': Reading manifest: Invalid extension permission: about:reader*
JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
1583591860338 Marionette INFO Listening on port 62496
1583591860722 Marionette WARN TLS certificate errors will be ignored for this session
1583591861230 Marionette INFO Stopped listening on port 62496
###!!! [Child][MessageChannel::SendAndWait] Error: Channel error: cannot send/recv
heroes/__pycache__/__init__.cpython-36.pyc
0 → 100644
View file @
747f0e42
File added
heroes/__pycache__/views.cpython-36.pyc
0 → 100644
View file @
747f0e42
File added
lab1_functional_test.py
View file @
747f0e42
from
selenium
import
webdriver
import
unittest
from
heroes
import
views
class
NewVisitorTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
@@ -19,7 +20,7 @@ class NewVisitorTest(unittest.TestCase):
# She sees a list containing three heroes with their corresponding
# names, health points, and damage
three_heroes_name
=
self
.
browser
.
find_elements_by_tag_name
(
"h1"
)
self
.
browser
# When she selects one of the heroes, she is sent to another page
# containing more information about the hero (additional stats, lore, image).
...
...
willowisptest.html
0 → 100644
View file @
747f0e42
<!DOCTYPE html>
<html>
<head>
<title>
The Will of the Wisps Wiki
</title>
</head>
<body>
<ul>
<li>
Jester
</li>
<li>
Cloud
</li>
<li>
Sunflowey
</li>
</ul>
</body>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment