This project contains several common helper functions and commands that can be used in Cypress.io projects.
Follow these steps to use this project:
-
Create a Cypress test project
-
Add this project as an npm/yarn package (replace
<version>
with the desired git version tag):yarn add https://github.com/ugent-library/cypress-common.git#<version>
-
Import the desired functions/commands in your
cypress/support/index.js
file:import 'cypress-common/helpers/chai'; import 'cypress-common/commands/map';
-
Use the imported functions/commands in your tests.
Yields the element at index n (zero-based) of "array-likes". If n is negative, the n-th element from the end is yielded.
This command uses lodash's nth method under the hood, which is very similar to the vanilla Array.prototype.at method but yields undefined instead of throwing when the subject is not an array-like.
cy.get("img").at(2); // Yields the third image element
cy.get("a").prop("href").at(1); // Yields "t" (provided href is a URL that starts with "http")
cy.wrap([1, 2, 3, 4]).at(3); // Yields 4
cy.wrap([1, 2, 3, 4]).at(-1); // Yields 4
cy.wrap([1, 2, 3, 4]).at(10); // Yields undefined
cy.wrap({ abc: 123 }).at(4); // Yields undefined
Invokes the jQuery attr method.
cy.get("img#logo").attr("src"); // Yields the src attribute value of the selected IMG
cy.get("img#logo").attr("alt", "The corporate logo"); // Yields the selected IMG component
Maps a set of chained elements using a lodash iteratee.
cy.get("a").map("href"); // Yields an array of href attributes of each A-tag
cy.get("img").map((img) => Math.max(img.height, img.width)); // Yields the maximum side size for each IMG-tag
cy.wrap([1, 2, 3]).map((i) => i * i); // Yields [1, 4, 9]
Read a query parameter from the current location or from a chained string or object with toString
method.
cy.param("search").should("eq", "Wikipedia");
cy.param("noExistingParam", "other").should("eq", "other");
cy.get("iframe").its("src").param("viewMode").should("eq", "embedded");
Yields an object representing the search query.
cy.params().should("eql", { search: "Wikipedia" });
cy.get("iframe").its("src").params().should("eql", { viewMode: "embedded" });
cy.wrap("https://example.com?name=John&name=Doe&age=49")
.params()
.should("eql", { name: ["John", "Doe"], age: "49" });
Invokes the jQuery prop method.
cy.get("img#logo").prop("src"); // Yields the src property value of the selected IMG
cy.get("img#logo").prop<string>("src"); // Typescript version of the line above
cy.get("img#logo").prop("alt", "The corporate logo"); // Yields the selected IMG component
Yields a random element from the list of chained elements.
cy.get("a").random(); // Yields a random A element
cy.wrap([1, 3, 5, 7, 9]).random(); // Yields an odd number between 0 and 10
cy.get("a").random(5); // Yields a random of the first 5 A elements
cy.get("a").random(10, 20); // Yields a random A element from the 10..20 range
cy.wrap([1, 2, 3]).random(4, 5); // Yields null
Splits the subject string in multiple elements based on a delimiter.
cy.get("textarea#notes").invoke("val").split("\n"); // Yields an array of lines of a selected TEXTAREA
cy.wrap("abc def").split(); // Yields ['a', 'b', 'c', ' ', 'd', 'e', 'f']
cy.location("pathname").split("/"); // Eg.: ['', 'en', 'tags', 'foo', 'bar', '']
cy.location("pathname").split("/", true); // Eg.: ['en', 'tags', 'foo', 'bar']
Yields the (aggregate) sum of the chained elements.
cy.get("img").map("height").sum();
Yields the subject without any duplicates. Use the sorted
parameter to also sort the yielded array.
cy.get("a").map("href").unique(); // Find all unique hyperlinks on a page
A list of helper functions for Chai assertions:
readonly()
: Asserts that an HTML field is readonlystarts.with(<substring>)
: Asserts that a string starts with a substringends.with(<substring>)
: Asserts that a string ends with a substringhave.param(<name>, <value>)
: Asserts that a URL string contains a query parameter with a value (value is optional)inViewport(<the window object>)
: Asserts that a DOM element is currently visible inside the browser viewport
These helpers can be used both as a Chai expectation:
expect("This is a test").to.end.with("a test");
expect("https://www.google.com/search?query=abc123").to.have.param(
"query",
"abc123"
);
expect(Cypress.$("#aButton")).to.be.inViewport(window);
or in the Cypress should notation:
cy.get("input#province").should("be.readonly");
cy.location("href").should("have.param", "query", "abc123");
cy.window().then((w) => cy.get("#aButton").should("be.inViewport"));
All Chai helpers can also be inversed with the .not
flag:
expect("This is a test").to.not.start.with("a test");
expect("https://www.google.com/search?query=abc123").to.not.have.param(
"source"
);
cy.get("input#name").should("not.be.readonly");