Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. config.sites.forEach((site) => {
  2. describe('Testing SEO:' + site.url, function() {
  3. before(function() {
  4. cy.visit(site.url);
  5. });
  6.  
  7. it('Check there is only one h1 on the page on', function() {
  8. cy.get('h1').should('have.length', 1)
  9. });
  10.  
  11. it('Checks the contents of an h1', function() {
  12. cy.get('h1').should('have.text', site.seo.h1)
  13. });
  14. });
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement