You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
### Changed
2
+
* Add support for any e2e testing framewrok starting with Playwright [PR 131](https://github.com/shakacode/cypress-on-rails/pull/131) by [KhaledEmaraDev]
Copy file name to clipboardexpand all lines: README.md
+62-18
Original file line number
Diff line number
Diff line change
@@ -14,20 +14,21 @@ Need help with cypress-on-rails? Contact [ShakaCode](mailto:[email protected]
14
14
15
15
----
16
16
17
-
# Playwright.dev support
18
-
We're working on full support for [Playwright.dev](https://playwright.dev/). See [issue #116](https://github.com/shakacode/cypress-on-rails/issues/116#issuecomment-1523946478) for details.
19
-
20
17
# Totally new to Cypress?
21
18
Suggest you first learn the basics of Cypress before attempting to integrate with Ruby on Rails
Gem for using [cypress.io](http://github.com/cypress-io/) in Rails and Ruby Rack applications
28
-
with the goal of controlling state as mentioned in [Cypress Best Practices](https://docs.cypress.io/guides/references/best-practices.html#Organizing-Tests-Logging-In-Controlling-State)
29
+
Gem for using [cypress.io](http://github.com/cypress-io/) or [playwright.dev](https://playwright.dev/) in Rails and Ruby Rack applications with the goal of controlling state as mentioned in [Cypress Best Practices](https://docs.cypress.io/guides/references/best-practices.html#Organizing-Tests-Logging-In-Controlling-State)
29
30
30
-
It allows you to run code in the application context when executing cypress tests.
31
+
It allows you to run code in the application context when executing cypress or playwright tests.
31
32
Do things like:
32
33
* use database_cleaner before each test
33
34
* seed the database with default data for each test
@@ -57,11 +58,18 @@ end
57
58
Generate the boilerplate code using:
58
59
59
60
```shell
61
+
# by default installs only cypress
60
62
bin/rails g cypress_on_rails:install
61
63
62
64
# if you have/want a different cypress folder (default is cypress)
63
65
bin/rails g cypress_on_rails:install --cypress_folder=spec/cypress
64
66
67
+
# to install both cypress and playwright
68
+
bin/rails g cypress_on_rails:install --install_cypress --install_playwright --playwright_folder=playwright
69
+
70
+
# to change where the Ruby files reside (default is e2e)
71
+
bin/rails g cypress_on_rails:install --install_folder=test/e2e
72
+
65
73
# if you target the Rails server with a path prefix to your URL
66
74
bin/rails g cypress_on_rails:install --api_prefix=/api
67
75
@@ -76,21 +84,22 @@ bin/rails g cypress_on_rails:update
76
84
```
77
85
78
86
The generator modifies/adds the following files/directory in your application:
79
-
*`config/environments/test.rb`
80
87
*`config/initializers/cypress_on_rails.rb` used to configure Cypress on Rails
81
88
*`spec/cypress/e2e/` contains your cypress tests
89
+
*`spec/playwright/e2e/` contains your playwright tests
82
90
*`spec/cypress/support/on-rails.js` contains Cypress on Rails support code
83
-
*`spec/cypress/app_commands/scenarios/` contains your Cypress on Rails scenario definitions
84
-
*`spec/cypress/cypress_helper.rb` contains helper code for Cypress on Rails app commands
91
+
*`spec/playwright/support/on-rails.js` contains Playwright on Rails support code
92
+
*`spec/e2e/app_commands/scenarios/` contains your Cypress on Rails scenario definitions
93
+
*`spec/e2e/cypress_helper.rb` contains helper code for Cypress on Rails app commands
85
94
86
-
If you are not using `database_cleaner` look at `spec/cypress/app_commands/clean.rb`.
87
-
If you are not using `factory_bot` look at `spec/cypress/app_commands/factory_bot.rb`.
95
+
If you are not using `database_cleaner` look at `spec/e2e/app_commands/clean.rb`.
96
+
If you are not using `factory_bot` look at `spec/e2e/app_commands/factory_bot.rb`.
88
97
89
98
Now you can create scenarios and commands that are plain Ruby files that get loaded through middleware, the ruby sky is your limit.
90
99
91
100
### Update your database.yml
92
101
93
-
When running `cypress test` on your local computer it's recommended to start your server in development mode so that changes you
102
+
When running `cypress test`or `playwright test`on your local computer it's recommended to start your server in development mode so that changes you
94
103
make are picked up without having to restart the server.
95
104
It's recommended you update your `database.yml` to check if the `CYPRESS` environment variable is set and switch it to the test database
96
105
otherwise cypress will keep clearing your development database.
@@ -123,6 +132,10 @@ yarn cypress open
123
132
node_modules/.bin/cypress open
124
133
# or if you changed the cypress folder to spec/cypress
125
134
yarn cypress open --project ./spec
135
+
# or for playwright
136
+
yarn playwright test --ui
137
+
# or using npm
138
+
npx playwright test --ui
126
139
```
127
140
128
141
How to run cypress on CI
@@ -133,7 +146,7 @@ How to run cypress on CI
133
146
134
147
yarn run cypress run
135
148
# or for npm
136
-
node_modules/.bin/cypress run
149
+
npx cypress run
137
150
```
138
151
139
152
### Example of using factory bot
@@ -203,7 +216,7 @@ describe('My First Test', () => {
0 commit comments