In the context of a C3 application I am trying to test if the path of a graph is being drawn using Cypress.
However since the graph uses C3 brush feature, using something like:
cy.get('mySelectorPath').should('be.visible');
Will fail because I fall under a is not visible because it has CSS property: position: fixed and it's being covered by another element:
error.
Should I just give up testing visibility and just check for the element presence or is there a way to enforce a different check that will verify that the path is rendered in C3’s svg ?