I am using this extension to help QA team members to identify POM selectors when writing e2e tests in cypress, the selectors are stored in a class (example below), when hovering over the method inside file that contains the class, the image is displayed,
however, when attempting to hover over the method name outside of the file, I get a broken image link, and instead shows the alt text.
example class:
class ChangeEmail {
/**![Change email forms email field](email.png)*/
emailField() { return cy.get('#email') }
}
/**POM for [/user/dashboard/account/email/change] */
export const changeEmail = new ChangeEmail()
I have tried using relative path, absolute paths, base64 conversion, but nothing seems to be working, is this even possible to accomplish?
I am using this extension to help QA team members to identify POM selectors when writing e2e tests in cypress, the selectors are stored in a class (example below), when hovering over the method inside file that contains the class, the image is displayed,
however, when attempting to hover over the method name outside of the file, I get a broken image link, and instead shows the alt text.
example class:
I have tried using relative path, absolute paths, base64 conversion, but nothing seems to be working, is this even possible to accomplish?