kuceb
kuceb
@meinaart This is backwards compatible. However the tests for the plugin will fail on a previous Cypress version. I'll add some code to test on multiple Cypress versions
@meinaart take a look at the changes to CI, I've added testing for previous versions of cypress and 5.0.
@s-kris interesting. at default quotas you can only make 100 searches per day, so that is surprising 10 people could even share that. For my similar app, I ended up...
@s-kris 100 https://developers.google.com/youtube/v3/determine_quota_cost
@johncblandii is right. At some point, probably at a login attempt, there was a script like `window.top.location = ...` which broke out of the cypress AUT iframe. This is part...
@simonmagabe if you control the source code, find the code that calls `window.location` or `window.top` and put a flag around it to disable it in a testing/staging/dev environment. if you...
@johncblandii yes this is the downside of Iframing the app, without rewriting all the AST in the proxy (which is possible). ## Current Workaround We recommend using the Salesforce API...
I'll re-open this for visibility, since it is an issue many users will run into and it is possible we may be able to fix this in the futue
related, in `cy.visit()` you'll be able to pass an option specifying queryparams to be appended to the url #5034
@bkosse since we expect the test context to adhere to a strict schema, we explicitly construct the final context before passing it to reporters, picking only the values we expect...