Skip to content

Commit

Permalink
Update dialog.ex w/ placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyti authored May 25, 2024
1 parent dfac752 commit e6af550
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions lib/playwright/dialog.ex
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e6af550

Please sign in to comment.