
Automatically dismissing flash messages in Phoenix LiveView
Phoenix LiveView comes with excellent UI interactivity tools out of the box. One of the features Phoenix provides is flash messages. They come in two types: info and error. In LiveView, they are simply displayed using: Phoenix.LiveView.put_flash(socket, :info, “Some info message”) Phoenix.LiveView.put_flash(socket, :error, “Some error message”). When they are displayed,…
Keep readingBuilding API test client as a Ruby gem
Intro To not be confused, these are not API tests. As title says, this guide will show you how to build API client using Ruby and export it as a gem. This type of client is often needed for some testing purposes. API client in this guide will use server…
Keep readingSelenium WebDriver test automation using Golang
Automating web browser is pretty common and it’s nothing new. Selenium is de facto industry standard and there are libraries for various programming languages with most common being Java and Ruby. What’s less common is writing Selenium automated tests using Golang, so this blog post will be exactly about that.…
Keep readingSomething went wrong. Please refresh the page and/or try again.
Get new content delivered directly to your inbox.