lucky_flow icon indicating copy to clipboard operation
lucky_flow copied to clipboard

Automated browser tests for web applications. Similar to Ruby's Capybara.

Results 26 lucky_flow issues
Sort by recently updated
recently updated
newest added

Fixes #65 This breaks out the methods that require Lucky, Avram, or Authentic being required. Now you would just require the specific extension you need. For most apps, it's an...

In this PR https://github.com/luckyframework/lucky_flow/pull/135 `be_on_page` was removed in favor of `have_element`. This ended up being a breaking change. When trying to fix the specs, I found it really confusing on...

Specifically, in the code picture, it uses the old `.should be_on_page` expectation. It needs to be `should have_element(...)`. Look for other things that need to be updated.

easy/high impact

I'm running a test and spawned multiple Flows at the same time, and after the first one spawned, the rest started throwing this error: ``` Unable to create directory: './tmp/screenshots':...

bug

It's not even possible to get this error right now, but if/when https://github.com/luckyframework/lucky_flow/pull/133 is merged it will be if you try to use headless and non-headless chrome in the same...

I'd love to add a feature that lets the user save and then compare against "golden" (i.e. correct and expected) screenshot images of what their website looks like at different...

I'm currently leveraging LuckyFlow to test the entirety of https://luckycasts.com I've never had an issue in my development environment, but in GitHub Actions I continue to get random tests that...

So at the panel discussion @matthewmcgarvey [mentioned that he would love to have mocking and additional features available in specs](https://youtu.be/iOUPRIsVuuc?list=PLfpFq_WLOW__RIIyWvTgYV4bw2cpav2mJ&t=1756). I guess by "missing" he meant in reference to RSpec....

Reference https://github.com/luckyframework/lucky_flow/issues/85 for the discussion

Our app has a `Member`, but no `User` class, so when we try to add in flow, we get a compile error. We can alias this out, but it starts...

bug