Files
cypress/packages/extension/app/newtab.html
T
Jennifer Shehane 63c23e4dd1 Add rel="noopener" where appropriate, remove where not (#3952)
- Update urls to use most recent on.cypress.io links
- Update wording of newtab to say tests *may* fail due to focus, as
opposed to *will* fail (as was the case in the past)
2019-04-12 09:52:04 -04:00

23 lines
771 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Cypress is running</title>
<link rel="stylesheet" type="text/css" href="newtab.css">
</head>
<body>
<div class="wrapper">
<div class="img-wrapper">
<img src="logos/cypress-bw.png">
</div>
<h1>Cypress is currently automating this browser.</h1>
<p>Opening new tabs may interfere with tests and cause failures.</p>
<p>Please note:</p>
<ul>
<li>Any opened tabs will be closed when Cypress is stopped.</li>
<li>Tests currently running may fail while another tab has focus.</li>
<li>Cookies and session from other sites will be cleared.</li>
</ul>
<a href="https://on.cypress.io/launching-browsers" target="_blank">Read more about browser management</a>
</div>
</body>
</html>