kuceb

Results 72 comments of kuceb
trafficstars

@alexkrolick can you provide the code for `customGetById`? I'm not able reproduce this issue

@alexkrolick I see, you're asking for plugin authors to have access to the retry mechanism, custom commands using `cy.get` under the hood will still work fine

You can make an arbitrary function retry **and** pass along its return value using a small hack that combines `should` and `invoke` Here's an example of a custom command that...

@JulianG that issue was for testing content scripts, which is currently possible. But yeah this is the other half of Chrome extensions

Curious, which pages are you most wanting to test? background.html? popup.html? And you need access to the `chrome.*` apis correct? I'm trying to figure out the scope of work here,...

Thanks everyone for the input. I think the use case of @Kocal can currently be done by stubbing `chrome.*` apis and running a simple http server in the folder with...

@callmenick I'm working on testing a chrome extension that injects html into a third party site, but no Test Runner features are being developed yet. Most likely I'll end up...

Hey everyone, I was able to set up a good workflow (*see however below**) for testing chrome extensions that inject HTML onto third party sites. For example, to test an...

@bdresser the main hurdle to this is #687 , and I have no timeline for that; however I'm not exactly sure what you are testing. could you describe your use...

This is due to type='email' inputs automatically trimming end whitespace when reading off the value property, and will automatically trim the whitespace when setting value directly. Will only really be...