diff --git a/README.md b/README.md index afac3b5f..c4b2b073 100644 --- a/README.md +++ b/README.md @@ -132,6 +132,3 @@ For both endpoints, upload with POST and modify with PUT or PATCH. Authenticated ## oembed RCVis implements the [oembed protocol](http://www.oembed.com) with discoverability, allowing you to embed files into your website with an iframe. - -## Testing -Cross-browser Testing Platform and Open Source ❤️ provided by [Sauce Labs](https://saucelabs.com). diff --git a/static/visualizer/resource_rankedchoices.png b/static/visualizer/resource_rankedchoices.png new file mode 100644 index 00000000..74c2036a Binary files /dev/null and b/static/visualizer/resource_rankedchoices.png differ diff --git a/static/visualizer/resource_rankit.svg b/static/visualizer/resource_rankit.svg deleted file mode 100644 index 955c4ac5..00000000 --- a/static/visualizer/resource_rankit.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - diff --git a/templates/visualizer/index.html b/templates/visualizer/index.html index 5720e330..23facfe8 100644 --- a/templates/visualizer/index.html +++ b/templates/visualizer/index.html @@ -161,14 +161,14 @@

More Resources

-
RankIt Online RCV Polls
- - Rankit.vote icon +
RankedChoices Online RCV Polls
+
+ RankedChoices icon
rankit.vote
- RankIt is FairVote's RCV online polling tool. You can use it to elect a leader in your local student organization, or just ask your friends which movie they'd like to watch next. + RankedChoices is a free RCV online polling tool. You can use it to elect a leader in your local student organization, or just ask your friends which movie they'd like to watch next.
diff --git a/visualizer/tests/liveServerTestBaseClass.py b/visualizer/tests/liveServerTestBaseClass.py index 90ad69c6..5fd240f2 100644 --- a/visualizer/tests/liveServerTestBaseClass.py +++ b/visualizer/tests/liveServerTestBaseClass.py @@ -141,6 +141,9 @@ def _assert_log_len(self, num): # This happens on the chromedriver used on 2023-05-18 log = [l for l in log if 'ch-ua-form-factor' not in l['message']] + # This happens on the chromedriver used on 2024-03-18 + log = [l for l in log if 'Third-party cookie will be blocked' not in l['message']] + # This happens on saucelabs log = [l for l in log if 'favicon.ico - Failed to load resource' not in l['message']]