We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13165d5 commit 77ea242Copy full SHA for 77ea242
examples/testing-dom__sorting-table/cypress/integration/spec.js
@@ -11,7 +11,7 @@ describe('Sorting table', () => {
11
12
cy.get('#myGrid') // table
13
.within(() => {
14
- cy.get('[role=rowgroup] .ag-row')
+ cy.get('.ag-center-cols-container[role=rowgroup] .ag-row')
15
.should('have.length', 3) // non-header rows
16
17
cy.log('**sort by price**')
examples/testing-dom__sorting-table/index.html
@@ -3,7 +3,7 @@
3
4
<head>
5
<title>Ag-Grid Basic Example</title>
6
- <script src="https://unpkg.com/ag-grid-community/dist/ag-grid-community.min.js"></script>
+ <script src="https://unpkg.com/ag-grid-community@27.3.0/dist/ag-grid-community.min.js"></script>
7
<script src="main.js"></script>
8
</head>
9
0 commit comments