You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 line
258 B

  1. describe("LessPass", function() {
  2. it("successfully loads", function() {
  3. cy.visit("/");
  4. cy.wait(500);
  5. });
  6. it("should focus site field", function() {
  7. cy.visit("/");
  8. cy.wait(500);
  9. cy.focused().should("have.id", "siteField");
  10. });
  11. });