-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Command Log's click displays Object{9} and other nonsense when click({multiple: true}) #88
Comments
Fixed in |
@jennifer-shehane @brian-mann HI! Im having a similar issue when passing force to .click Cypress.Commands.add('dropdownSelectByText', (selector, text = '', force = false) => {
cy.get(selector).click({ force: force });
cy.contains('some-other-selector', text).click({ force: true});
]}); for some reason the second force is logged properly but not the first. |
After some digging around, I can say that this happens when you pass
I dont exactly know what the goal of these methods are, but I could put together a PR if you point me in the right direction. Cheers! |
Hey @ntgussoni, can you open up a new issue and reference this comment there? This definitely should not be printing this. It's probably trying to print all default options? Not sure. |
@jennifer-shehane Created this #2847 |
Whenever you pass options
{multiple: true}
tocy.click()
, each click command in the command log displays nonsense data likeObject{9}
or{interval: 16}
, etc.Example Code
Command Log Screenshot

The text was updated successfully, but these errors were encountered: