From e6af55069cbaafa5d84c3f55f63ffcdde26c58bf Mon Sep 17 00:00:00 2001 From: Corey Innis Date: Fri, 24 May 2024 19:49:53 -0700 Subject: [PATCH] Update dialog.ex w/ placeholders --- lib/playwright/dialog.ex | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/lib/playwright/dialog.ex b/lib/playwright/dialog.ex index 500fcb22..0fe28528 100644 --- a/lib/playwright/dialog.ex +++ b/lib/playwright/dialog.ex @@ -1,4 +1,23 @@ defmodule Playwright.Dialog do @moduledoc false use Playwright.ChannelOwner + + # @spec accept(Dialog.t(), binary()) :: :ok + # def accept(dialog, prompt \\ "") + + # @spec default_value(Dialog.t()) :: binary() + # def default_value(dialog) + + # @spec dismiss(Dialog.t()) :: :ok + # def dismiss(dialog) + + # @spec message(Dialog.t()) :: binary() + # def message(dialog) + + # @spec page(Dialog.t()) :: nil | Page.t() + # def page(dialog) + + # @spec type(Dialog.t()) :: binary() + # def type(dialog) + end