Return True if the url is a valid url.
(self, url)
| 243 | ) |
| 244 | |
| 245 | def is_valid_url(self, url): |
| 246 | """Return True if the url is a valid url.""" |
| 247 | return page_utils.is_valid_url(url) |
| 248 | |
| 249 | def is_alert_present(self): |
| 250 | try: |
no outgoing calls
no test coverage detected