For Selenium tests, your browser starts in your local timezone, or whatever your system's environment specifies. This is usually...
Why Rails has multiple schema formats When you run migrations, Rails will write your current database schema into db/schema.rb. This...
Here is a workaround for when you want to use text-wrap: balance but must also render nicely for browsers...
SVG files often contain redundant information, like editor metadata or hidden elements. When esbuild handles your static assets, you can...
PostgreSQL can cosplay as a full-text search engine. It doesn't have the features or fidelity of ElasticSearch or...
The key to unlocking the full potential of LLMs in coding lies in crafting precise prompts. The main challenge is...
Hint If you are using our opscomplete.com hosting we can set all environment variables mentioned below for your deployment on...
Updated for selenium-webdriver 4.27 which requires options.add_option(:page_load_strategy, 'none').
If you update Selenium regularly, you'll run into deprecation warnings similar to: WARN Selenium [:clear_local_storage] [DEPRECATION] clear...
tl;dr When a cookie includes an Expires attribute or an HTTP response includes caching headers like Expires or Cache...
Text fragments allow linking directly to a specific portion of text in a web document, without requiring the author to...
YJIT is Ruby's default just-in-time compiler. It is considered production-ready since Ruby 3.2 (source).
A lesser known fact about PG enums is that they are ordered. This can be really handy when values have...
We recently migrated a Rails application from yarn to npm. We decided to go this step instead of upgrading to...
If a Cucumber run deletes your application directory, an integration fail between Capybara and Capybara Screenshot may be the cause...
This talk shows simple and advanced usages of the ruby/debug debugger. It goes through a step by step debugging workflow...
Starting with ChromeDriver 127, if your application displays a beforeunload confirmation dialog, ChromeDriver will immediately close it. In consequence, any...
I recently stumbled upon the Rails feature composed_of. One of our applications dealt with a lot of addresses and...
While most Rails Apps are tied to at least one external REST API, machine-to-machine communication via GraphQL is...
This card shows an uncommon way to retrieve a file using selenium where JavaScript is used to return a binary...
Fresh Chrome installations now show a "Choose your search engine" popup in Europe. This might make your Cucumber tests fail...
This card is a short summary on different ways of assigning multiple attributes to an instance of a class.
Using Capistrano, we usually have some array configurations in the config/deploy.rb file, like set :linked_files, %w[config/database.yml], so in...
I used two lab days to read the The framework field guide - Fundamentals, the first of a three part series...