Skip to content

Commit 3f21508

Browse files
committed
Update the ignore-list for assert_no_404_errors()
1 parent 7ddd7a3 commit 3f21508

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

seleniumbase/fixtures/base_case.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4614,10 +4614,12 @@ def assert_no_404_errors(self, multithreaded=True, timeout=None):
46144614
links = []
46154615
for link in all_links:
46164616
if (
4617-
"javascript:" not in link
4617+
"data:" not in link
46184618
and "mailto:" not in link
4619-
and "data:" not in link
4619+
and "javascript:" not in link
46204620
and "://fonts.gstatic.com" not in link
4621+
and "://fonts.googleapis.com" not in link
4622+
and "://googleads.g.doubleclick.net" not in link
46214623
):
46224624
links.append(link)
46234625
if timeout:

0 commit comments

Comments
 (0)