Skip to content

Commit

Permalink
Update supported versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Marketionist committed Nov 25, 2023
1 parent 17f15cf commit 9a0e0d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 41 deletions.
44 changes: 4 additions & 40 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,45 +19,9 @@ tests - see the presentation of why and how you can easily use
</thead>
<tbody>
<tr>
<td>8.x</td>
<td rowspan=13>1.x</td>
<td rowspan=13>5.x, 6.x, 7.x</td>
</tr>
<tr>
<td>9.x</td>
</tr>
<tr>
<td>10.x</td>
</tr>
<tr>
<td>11.x</td>
</tr>
<tr>
<td>12.x</td>
</tr>
<tr>
<td>13.x</td>
</tr>
<tr>
<td>14.x</td>
</tr>
<tr>
<td>15.x</td>
</tr>
<tr>
<td>16.x</td>
</tr>
<tr>
<td>17.x</td>
</tr>
<tr>
<td>18.x</td>
</tr>
<tr>
<td>19.x</td>
</tr>
<tr>
<td>20.x</td>
<td>8.x - 20.x</td>
<td>1.x - 3.x</td>
<td>5.x - 10.x</td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -216,7 +180,7 @@ See more examples of how to use predefined steps in
If you want to get access to Page Objects in your custom Cucumber steps - you can just require them inside any step definitions
file like this:
```javascript
let pageObjects = require('testcafe-cucumber-steps/utils/get-page-objects.js');
const pageObjects = require('testcafe-cucumber-steps/utils/get-page-objects.js');
```

## Importing and running in CLI
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const { ClientFunction, Selector } = require('testcafe');
const { createRequest } = require('js-automation-tools');
const SelectorXPath = require('./utils/selector-xpath.js');
const errors = require('./utils/errors.js');
let pageObjects = require('./utils/get-page-objects.js');
const pageObjects = require('./utils/get-page-objects.js');

let Given;
let When;
Expand Down

0 comments on commit 9a0e0d6

Please sign in to comment.