Cypress: Difference between revisions
Jump to navigation
Jump to search
(Created page with "==References== {| | valign="top" | * [https://www.linkedin.com/pulse/cypress-vs-selenium-farhan-ahmed-khoso Cypress » Cypress vs. Selenium] * JQ Tool * Wrk | valign=...") |
|||
(14 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<source lang="bash"> | |||
source ~/.bashrc | |||
nvm install 16.13.2 | |||
nvm use 16.13.2 | |||
node -v | |||
npm install [email protected] --save-dev | |||
npm install | |||
# npx cypress run --record --key 4b8311b7-5c2b-488d-bf46-03fcf372b034 | |||
npx cypress open | |||
# » cloud.cypress.io login | |||
# » E2E Testing » Configuration files | |||
# » Choose a browser » Firefox » Start E2E Testing | |||
# » http://localhost:43599/__/#/specs | |||
</source> | |||
==References== | ==References== | ||
{| | {| | ||
| valign="top" | | | valign="top" | | ||
* [https://docs.cypress.io/guides/core-concepts/writing-and-organizing-tests Cypress » Writing and Organizing Tests] | |||
* [https://www.linkedin.com/pulse/cypress-vs-selenium-farhan-ahmed-khoso Cypress » Cypress vs. Selenium] | * [https://www.linkedin.com/pulse/cypress-vs-selenium-farhan-ahmed-khoso Cypress » Cypress vs. Selenium] | ||
* [[ | * [https://www.browserstack.com/guide/cypress-unit-testing Cypress » Unit Testing Tutorial] | ||
* [[ | * [https://docs.cypress.io/guides/core-concepts/testing-types Cypress » Testing Types] | ||
* [https://docs.cypress.io/guides/core-concepts/test-isolation Cypress » Test Isolation] | |||
* [https://docs.cypress.io/guides/core-concepts/introduction-to-cypress Cypress » Introduction] | |||
* [https://www.cypress.io/ Cypress] | |||
| valign="top" | | | valign="top" | | ||
Line 15: | Line 38: | ||
|- | |- | ||
| valign="top" | | | valign="top" | | ||
* [https://k6.io/open-source/ K6 Open Source] | |||
* [[Selenium]] | |||
* [[NodeJS]] | |||
* [[JQ Tool]] | |||
* [[JMeter]] | |||
* [[NPM]] | |||
* [[Yarn]] | |||
* [[Wrk]] | |||
| valign="top" | | | valign="top" | |
Latest revision as of 01:30, 2 April 2024
source ~/.bashrc
nvm install 16.13.2
nvm use 16.13.2
node -v
npm install [email protected] --save-dev
npm install
# npx cypress run --record --key 4b8311b7-5c2b-488d-bf46-03fcf372b034
npx cypress open
# » cloud.cypress.io login
# » E2E Testing » Configuration files
# » Choose a browser » Firefox » Start E2E Testing
# » http://localhost:43599/__/#/specs
References
| ||