From 367e328d43c6fb38fd1ad2bf555e708e3b774005 Mon Sep 17 00:00:00 2001 From: Fredrik Teschke Date: Mon, 4 May 2026 14:41:50 +0200 Subject: [PATCH] fix: Use correct casing for ignoreHTTPSErrors --- lib/playwright_ex/periphery/serialization.ex | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/playwright_ex/periphery/serialization.ex b/lib/playwright_ex/periphery/serialization.ex index 512dd3e..c6ee3af 100644 --- a/lib/playwright_ex/periphery/serialization.ex +++ b/lib/playwright_ex/periphery/serialization.ex @@ -3,6 +3,7 @@ defmodule PlaywrightEx.Serialization do def camelize(:inner_html), do: "innerHTML" def camelize(:base_url), do: "baseURL" + def camelize(:ignore_https_errors), do: "ignoreHTTPSErrors" def camelize(input), do: input |> to_string() |> camelize(:lower) def underscore(string), do: string |> Macro.underscore() |> String.to_atom()