Jeremy Woertink
Jeremy Woertink
I'm not sure if this is an issue on the [s3 shard](https://github.com/taylorfinnell/awscr-s3) or not, but I get this error: ```xml PermanentRedirect The bucket you are attempting to access must be...
I have this failure, but not sure where it's coming from exactly... ``` Missing hash key: "status" (KeyError) from /Users/jeremywoertink/.asdf/installs/crystal/0.31.1/src/hash.cr:0:9 in '[]' from /Users/jeremywoertink/.asdf/installs/crystal/0.31.1/src/json/any.cr:102:7 in '[]' from lib/selenium/src/webdriver.cr:88:18 in 'failure'...
I pulled down the repo and tried to run the tests with crystal 0.31, but I got this error: ``` [16:44PM] selenium-webdriver-crystal (master)$ crystal run test/session_test.cr Module validation failed: !dbg...
Fixes #15 This is currently just WIP because I don't really understand the Lua internals. I know the implementation will need some work as it currently only works with `Float64`....
Let's say I have a lua file like: ```lua function one() print("one") end function two() print("two") end return one, two ``` Then I add these to the stack: ```crystal lua...
This adds in the [SDL_Timer stuff](https://wiki.libsdl.org/CategoryTimer). Used for checking elapsed time in milliseconds, and creating delayed callbacks. I added 2 samples for doing a simple timer, and a more advanced...
This fixes the missing overload error: ``` Overloads are: - SDL::Surface#fill(rect, r, g, b, a = nil) window.surface.fill(255, 255, 255) ```
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...
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':...