graphdb-workbench-tests 1.11.2 → 1.11.3-TR1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -202,7 +202,8 @@ describe('My Settings', () => {
|
|
|
202
202
|
cy.get('.rdf-info-side-panel .filter-sidepanel').should('be.visible');
|
|
203
203
|
cy.get('.include-schema-statements')
|
|
204
204
|
.scrollIntoView().should('be.visible').click()
|
|
205
|
-
.then(() => {
|
|
205
|
+
.then(($el) => {
|
|
206
|
+
cy.wrap($el).trigger('mouseleave', {force: true});
|
|
206
207
|
cy.get('.include-schema-statements').scrollIntoView()
|
|
207
208
|
.should('be.visible').and('not.be.checked');
|
|
208
209
|
saveGraphSettings()
|
package/package.json
CHANGED
package/steps/import-steps.js
CHANGED
|
@@ -199,7 +199,7 @@ class ImportSteps {
|
|
|
199
199
|
static verifyImportStatusDetails(fileToSelect, details) {
|
|
200
200
|
ImportSteps.getServerFileElement(fileToSelect).find('.import-status .import-status-info').then(infoIconEl => {
|
|
201
201
|
cy.wrap(infoIconEl).should('be.visible');
|
|
202
|
-
cy.wrap(infoIconEl).trigger('
|
|
202
|
+
cy.wrap(infoIconEl).trigger('mouseenter');
|
|
203
203
|
|
|
204
204
|
cy.get('.popover-content').then(content => {
|
|
205
205
|
cy.wrap(content).should('be.visible');
|