Return True if the url is a valid url.
(self, url)
| 8919 | return results |
| 8920 | |
| 8921 | def is_valid_url(self, url): |
| 8922 | """Return True if the url is a valid url.""" |
| 8923 | return page_utils.is_valid_url(url) |
| 8924 | |
| 8925 | def is_alert_present(self): |
| 8926 | try: |
no outgoing calls
no test coverage detected