Liking cljdoc? Tell your friends :D
Clojure only.

com.blockether.spel.options

Option map to Playwright Java options object conversion.

Converts idiomatic Clojure maps to Playwright's typed option objects. All functions use reflection-free type hints.

Option map to Playwright Java options object conversion.

Converts idiomatic Clojure maps to Playwright's typed option objects.
All functions use reflection-free type hints.
raw docstring

->check-optionsclj

(->check-options opts)

Converts a map to Locator$CheckOptions.

Converts a map to Locator$CheckOptions.
sourceraw docstring

->click-optionsclj

(->click-options opts)

Converts a map to Locator$ClickOptions.

Params: opts - Map with optional keys: :button - Keyword. :left :right :middle. :click-count - Long. Number of clicks. :delay - Double. Delay between mousedown/mouseup in ms. :force - Boolean. Bypass actionability checks. :modifiers - Vector of keywords. :alt :control :meta :shift. :no-wait-after - Boolean. :position - Map with :x :y. :timeout - Double. Maximum time in ms. :trial - Boolean. Perform actionability checks only.

Returns: Locator$ClickOptions instance.

Converts a map to Locator$ClickOptions.

Params:
`opts` - Map with optional keys:
  :button     - Keyword. :left :right :middle.
  :click-count - Long. Number of clicks.
  :delay      - Double. Delay between mousedown/mouseup in ms.
  :force      - Boolean. Bypass actionability checks.
  :modifiers  - Vector of keywords. :alt :control :meta :shift.
  :no-wait-after - Boolean.
  :position   - Map with :x :y.
  :timeout    - Double. Maximum time in ms.
  :trial      - Boolean. Perform actionability checks only.

Returns:
Locator$ClickOptions instance.
sourceraw docstring

->cookieclj

(->cookie opts)

Creates a Cookie instance from a map.

Params: opts - Map with optional keys: :name - String. Cookie name. :value - String. Cookie value. :domain - String. :path - String. :expires - Double. Unix timestamp. :http-only - Boolean. :secure - Boolean. :same-site - Keyword (:strict :lax :none).

Returns: Cookie instance.

Creates a Cookie instance from a map.

Params:
`opts` - Map with optional keys:
  :name      - String. Cookie name.
  :value     - String. Cookie value.
  :domain    - String.
  :path      - String.
  :expires   - Double. Unix timestamp.
  :http-only - Boolean.
  :secure    - Boolean.
  :same-site - Keyword (:strict :lax :none).

Returns:
Cookie instance.
sourceraw docstring

->dblclick-optionsclj

(->dblclick-options opts)

Converts a map to Locator$DblclickOptions.

Converts a map to Locator$DblclickOptions.
sourceraw docstring

->dispatch-event-optionsclj

(->dispatch-event-options opts)

Converts a map to Locator$DispatchEventOptions.

Converts a map to Locator$DispatchEventOptions.
sourceraw docstring

->drag-to-optionsclj

(->drag-to-options opts)

Converts a map to Locator$DragToOptions.

Converts a map to Locator$DragToOptions.
sourceraw docstring

->eh-check-optionsclj

(->eh-check-options opts)

Converts a map to ElementHandle$CheckOptions.

Converts a map to ElementHandle$CheckOptions.
sourceraw docstring

->eh-click-optionsclj

(->eh-click-options opts)

Converts a map to ElementHandle$ClickOptions.

Converts a map to ElementHandle$ClickOptions.
sourceraw docstring

->eh-dblclick-optionsclj

(->eh-dblclick-options opts)

Converts a map to ElementHandle$DblclickOptions.

Converts a map to ElementHandle$DblclickOptions.
sourceraw docstring

->eh-fill-optionsclj

(->eh-fill-options opts)

Converts a map to ElementHandle$FillOptions.

Converts a map to ElementHandle$FillOptions.
sourceraw docstring

->eh-hover-optionsclj

(->eh-hover-options opts)

Converts a map to ElementHandle$HoverOptions.

Converts a map to ElementHandle$HoverOptions.
sourceraw docstring

->eh-press-optionsclj

(->eh-press-options opts)

Converts a map to ElementHandle$PressOptions.

Converts a map to ElementHandle$PressOptions.
sourceraw docstring

->eh-screenshot-optionsclj

(->eh-screenshot-options opts)

Converts a map to ElementHandle$ScreenshotOptions.

Converts a map to ElementHandle$ScreenshotOptions.
sourceraw docstring

->eh-scroll-into-view-optionsclj

(->eh-scroll-into-view-options opts)

Converts a map to ElementHandle$ScrollIntoViewIfNeededOptions.

Converts a map to ElementHandle$ScrollIntoViewIfNeededOptions.
sourceraw docstring

->eh-select-option-optionsclj

(->eh-select-option-options opts)

Converts a map to ElementHandle$SelectOptionOptions.

Converts a map to ElementHandle$SelectOptionOptions.
sourceraw docstring

->eh-set-input-files-optionsclj

(->eh-set-input-files-options opts)

Converts a map to ElementHandle$SetInputFilesOptions.

Converts a map to ElementHandle$SetInputFilesOptions.
sourceraw docstring

->eh-tap-optionsclj

(->eh-tap-options opts)

Converts a map to ElementHandle$TapOptions.

Converts a map to ElementHandle$TapOptions.
sourceraw docstring

->eh-type-optionsclj

(->eh-type-options opts)

Converts a map to ElementHandle$TypeOptions.

Converts a map to ElementHandle$TypeOptions.
sourceraw docstring

->eh-uncheck-optionsclj

(->eh-uncheck-options opts)

Converts a map to ElementHandle$UncheckOptions.

Converts a map to ElementHandle$UncheckOptions.
sourceraw docstring

->eh-wait-for-element-state-optionsclj

(->eh-wait-for-element-state-options opts)

Converts a map to ElementHandle$WaitForElementStateOptions. Note: state is passed as first arg to ElementHandle.waitForElementState(), not set on the options object. This builder only handles timeout.

Converts a map to ElementHandle$WaitForElementStateOptions.
Note: state is passed as first arg to ElementHandle.waitForElementState(),
not set on the options object. This builder only handles timeout.
sourceraw docstring

->emulate-media-optionsclj

(->emulate-media-options opts)

Converts a map to Page$EmulateMediaOptions.

Converts a map to Page$EmulateMediaOptions.
sourceraw docstring

->fill-optionsclj

(->fill-options opts)

Converts a map to Locator$FillOptions.

Params: opts - Map with optional keys: :force - Boolean. :no-wait-after - Boolean. :timeout - Double.

Returns: Locator$FillOptions instance.

Converts a map to Locator$FillOptions.

Params:
`opts` - Map with optional keys:
  :force         - Boolean.
  :no-wait-after - Boolean.
  :timeout       - Double.

Returns:
Locator$FillOptions instance.
sourceraw docstring

->focus-optionsclj

(->focus-options opts)

Converts a map to Locator$FocusOptions.

Converts a map to Locator$FocusOptions.
sourceraw docstring

->frame-add-script-tag-optionsclj

(->frame-add-script-tag-options opts)

Converts a map to Frame$AddScriptTagOptions.

Converts a map to Frame$AddScriptTagOptions.
sourceraw docstring

->frame-add-style-tag-optionsclj

(->frame-add-style-tag-options opts)

Converts a map to Frame$AddStyleTagOptions.

Converts a map to Frame$AddStyleTagOptions.
sourceraw docstring

->frame-navigate-optionsclj

(->frame-navigate-options opts)

Converts a map to Frame$NavigateOptions.

Converts a map to Frame$NavigateOptions.
sourceraw docstring

->frame-set-content-optionsclj

(->frame-set-content-options opts)

Converts a map to Frame$SetContentOptions.

Converts a map to Frame$SetContentOptions.
sourceraw docstring

->frame-wait-for-function-optionsclj

(->frame-wait-for-function-options opts)

Converts a map to Frame$WaitForFunctionOptions.

Converts a map to Frame$WaitForFunctionOptions.
sourceraw docstring

->frame-wait-for-selector-optionsclj

(->frame-wait-for-selector-options opts)

Converts a map to Frame$WaitForSelectorOptions.

Converts a map to Frame$WaitForSelectorOptions.
sourceraw docstring

->frame-wait-for-url-optionsclj

(->frame-wait-for-url-options opts)

Converts a map to Frame$WaitForURLOptions.

Converts a map to Frame$WaitForURLOptions.
sourceraw docstring

->get-attribute-optionsclj

(->get-attribute-options opts)

Converts a map to Locator$GetAttributeOptions.

Converts a map to Locator$GetAttributeOptions.
sourceraw docstring

->get-by-role-optionsclj

(->get-by-role-options opts)

Converts a map to Page$GetByRoleOptions.

Params: opts - Map with optional keys: :name - String or Pattern. Accessible name to match. :exact - Boolean. Exact match for name (case-sensitive, whole-string). :checked - Boolean. Match checked state (aria-checked). :disabled - Boolean. Match disabled state (aria-disabled). :expanded - Boolean. Match expanded state (aria-expanded). :include-hidden - Boolean. Include hidden elements. :level - Integer. Heading level (for heading, listitem, row, treeitem). :pressed - Boolean. Match pressed state (aria-pressed). :selected - Boolean. Match selected state (aria-selected).

Returns: Page$GetByRoleOptions instance.

Converts a map to Page$GetByRoleOptions.

Params:
`opts` - Map with optional keys:
  :name           - String or Pattern. Accessible name to match.
  :exact          - Boolean. Exact match for name (case-sensitive, whole-string).
  :checked        - Boolean. Match checked state (aria-checked).
  :disabled       - Boolean. Match disabled state (aria-disabled).
  :expanded       - Boolean. Match expanded state (aria-expanded).
  :include-hidden - Boolean. Include hidden elements.
  :level          - Integer. Heading level (for heading, listitem, row, treeitem).
  :pressed        - Boolean. Match pressed state (aria-pressed).
  :selected       - Boolean. Match selected state (aria-selected).

Returns:
Page$GetByRoleOptions instance.
sourceraw docstring

->go-back-optionsclj

(->go-back-options opts)

Converts a map to Page$GoBackOptions.

Converts a map to Page$GoBackOptions.
sourceraw docstring

->go-forward-optionsclj

(->go-forward-options opts)

Converts a map to Page$GoForwardOptions.

Converts a map to Page$GoForwardOptions.
sourceraw docstring

->hover-optionsclj

(->hover-options opts)

Converts a map to Locator$HoverOptions.

Converts a map to Locator$HoverOptions.
sourceraw docstring

->inner-html-optionsclj

(->inner-html-options opts)

Converts a map to Locator$InnerHTMLOptions.

Converts a map to Locator$InnerHTMLOptions.
sourceraw docstring

->inner-text-optionsclj

(->inner-text-options opts)

Converts a map to Locator$InnerTextOptions.

Converts a map to Locator$InnerTextOptions.
sourceraw docstring

->input-value-optionsclj

(->input-value-options opts)

Converts a map to Locator$InputValueOptions.

Converts a map to Locator$InputValueOptions.
sourceraw docstring

->is-checked-optionsclj

(->is-checked-options opts)

Converts a map to Locator$IsCheckedOptions.

Converts a map to Locator$IsCheckedOptions.
sourceraw docstring

->is-disabled-optionsclj

(->is-disabled-options opts)

Converts a map to Locator$IsDisabledOptions.

Converts a map to Locator$IsDisabledOptions.
sourceraw docstring

->is-editable-optionsclj

(->is-editable-options opts)

Converts a map to Locator$IsEditableOptions.

Converts a map to Locator$IsEditableOptions.
sourceraw docstring

->is-enabled-optionsclj

(->is-enabled-options opts)

Converts a map to Locator$IsEnabledOptions.

Converts a map to Locator$IsEnabledOptions.
sourceraw docstring

->is-hidden-optionsclj

(->is-hidden-options opts)

Converts a map to Locator$IsHiddenOptions.

Converts a map to Locator$IsHiddenOptions.
sourceraw docstring

->is-visible-optionsclj

(->is-visible-options opts)

Converts a map to Locator$IsVisibleOptions.

Converts a map to Locator$IsVisibleOptions.
sourceraw docstring

->keyboard-press-optionsclj

(->keyboard-press-options opts)

Converts a map to Keyboard$PressOptions.

Converts a map to Keyboard$PressOptions.
sourceraw docstring

->keyboard-type-optionsclj

(->keyboard-type-options opts)

Converts a map to Keyboard$TypeOptions.

Converts a map to Keyboard$TypeOptions.
sourceraw docstring

->launch-optionsclj

(->launch-options opts)

Converts a map to BrowserType$LaunchOptions.

Params: opts - Map with optional keys: :headless - Boolean. Run in headless mode (default: true). :slow-mo - Double. Slow down operations by ms. :timeout - Double. Maximum time in ms to wait for browser launch. :channel - String. Browser channel (e.g. "chrome", "msedge"). :args - Vector of strings. Additional browser args. :chromium-sandbox - Boolean. Enable Chromium sandbox. :downloads-path - String. Path to download files. :executable-path - String. Path to browser executable. :proxy - Map with :server, :bypass, :username, :password.

Returns: BrowserType$LaunchOptions instance.

Converts a map to BrowserType$LaunchOptions.

Params:
`opts` - Map with optional keys:
  :headless    - Boolean. Run in headless mode (default: true).
  :slow-mo     - Double. Slow down operations by ms.
  :timeout     - Double. Maximum time in ms to wait for browser launch.
  :channel     - String. Browser channel (e.g. "chrome", "msedge").
  :args        - Vector of strings. Additional browser args.
   :chromium-sandbox - Boolean. Enable Chromium sandbox.
   :downloads-path - String. Path to download files.
  :executable-path - String. Path to browser executable.
  :proxy       - Map with :server, :bypass, :username, :password.

Returns:
BrowserType$LaunchOptions instance.
sourceraw docstring

->launch-persistent-context-optionsclj

(->launch-persistent-context-options opts)

Converts a map to BrowserType$LaunchPersistentContextOptions.

Combines launch options (headless, args, proxy, etc.) and context options (viewport, user-agent, storage-state, etc.) into a single options object. Used with BrowserType.launchPersistentContext which returns a BrowserContext directly (not a Browser).

Params: opts - Map with optional keys: ;; Launch options :headless - Boolean. Run in headless mode (default: true). :slow-mo - Double. Slow down operations by ms. :timeout - Double. Maximum time in ms to wait for browser launch. :channel - String. Browser channel (e.g. "chrome", "msedge"). :args - Vector of strings. Additional browser args. :chromium-sandbox - Boolean. Enable Chromium sandbox. :downloads-path - String. Path to download files. :executable-path - String. Path to browser executable. :proxy - Map with :server, :bypass, :username, :password. ;; Context options :viewport - Map with :width :height, or nil to disable. :screen - Map with :width :height. :user-agent - String. :locale - String (e.g. "en-US"). :timezone-id - String (e.g. "America/New_York"). :permissions - Vector of strings. :ignore-https-errors - Boolean. :java-script-enabled - Boolean. :bypass-csp - Boolean. :device-scale-factor - Double. :is-mobile - Boolean. :has-touch - Boolean. :base-url - String. :accept-downloads - Boolean. :offline - Boolean. :extra-http-headers - Map of string->string.

Returns: BrowserType$LaunchPersistentContextOptions instance.

Converts a map to BrowserType$LaunchPersistentContextOptions.

Combines launch options (headless, args, proxy, etc.) and context options
(viewport, user-agent, storage-state, etc.) into a single options object.
Used with `BrowserType.launchPersistentContext` which returns a BrowserContext
directly (not a Browser).

Params:
`opts` - Map with optional keys:
  ;; Launch options
  :headless        - Boolean. Run in headless mode (default: true).
  :slow-mo         - Double. Slow down operations by ms.
  :timeout         - Double. Maximum time in ms to wait for browser launch.
  :channel         - String. Browser channel (e.g. "chrome", "msedge").
  :args            - Vector of strings. Additional browser args.
  :chromium-sandbox - Boolean. Enable Chromium sandbox.
  :downloads-path  - String. Path to download files.
  :executable-path - String. Path to browser executable.
  :proxy           - Map with :server, :bypass, :username, :password.
  ;; Context options
  :viewport        - Map with :width :height, or nil to disable.
  :screen          - Map with :width :height.
  :user-agent      - String.
  :locale          - String (e.g. "en-US").
  :timezone-id     - String (e.g. "America/New_York").
  :permissions     - Vector of strings.
  :ignore-https-errors - Boolean.
  :java-script-enabled - Boolean.
  :bypass-csp      - Boolean.
  :device-scale-factor - Double.
  :is-mobile       - Boolean.
  :has-touch       - Boolean.
  :base-url        - String.
  :accept-downloads - Boolean.
  :offline         - Boolean.
  :extra-http-headers - Map of string->string.

Returns:
BrowserType$LaunchPersistentContextOptions instance.
sourceraw docstring

->locator-screenshot-optionsclj

(->locator-screenshot-options opts)

Converts a map to Locator$ScreenshotOptions.

Converts a map to Locator$ScreenshotOptions.
sourceraw docstring

->mouse-click-optionsclj

(->mouse-click-options opts)

Converts a map to Mouse$ClickOptions.

Converts a map to Mouse$ClickOptions.
sourceraw docstring

->mouse-dblclick-optionsclj

(->mouse-dblclick-options opts)

Converts a map to Mouse$DblclickOptions.

Converts a map to Mouse$DblclickOptions.
sourceraw docstring

->mouse-down-optionsclj

(->mouse-down-options opts)

Converts a map to Mouse$DownOptions.

Converts a map to Mouse$DownOptions.
sourceraw docstring

->mouse-move-optionsclj

(->mouse-move-options opts)

Converts a map to Mouse$MoveOptions.

Converts a map to Mouse$MoveOptions.
sourceraw docstring

->mouse-up-optionsclj

(->mouse-up-options opts)

Converts a map to Mouse$UpOptions.

Converts a map to Mouse$UpOptions.
sourceraw docstring

->navigate-optionsclj

(->navigate-options opts)

Converts a map to Page$NavigateOptions.

Params: opts - Map with optional keys: :timeout - Double. Maximum time in ms. :wait-until - Keyword. :load :domcontentloaded :networkidle :commit. :referer - String. Referer header.

Returns: Page$NavigateOptions instance.

Converts a map to Page$NavigateOptions.

Params:
`opts` - Map with optional keys:
  :timeout    - Double. Maximum time in ms.
  :wait-until - Keyword. :load :domcontentloaded :networkidle :commit.
  :referer    - String. Referer header.

Returns:
Page$NavigateOptions instance.
sourceraw docstring

->new-context-optionsclj

(->new-context-options opts)

Converts a map to Browser$NewContextOptions.

Params: opts - Map with optional keys: :viewport - Map with :width :height or nil to disable. :screen - Map with :width :height. :user-agent - String. :locale - String (e.g. "en-US"). :timezone-id - String (e.g. "America/New_York"). :geolocation - Map with :latitude :longitude :accuracy. :permissions - Vector of strings. :color-scheme - Keyword (:light :dark :no-preference). :ignore-https-errors - Boolean. :java-script-enabled - Boolean. :bypass-csp - Boolean. :device-scale-factor - Double. :is-mobile - Boolean. :has-touch - Boolean. :base-url - String. :storage-state - String (path or JSON). :accept-downloads - Boolean. :offline - Boolean. :extra-http-headers - Map of string->string. :record-video-dir - String. :record-video-size - Map with :width :height. :record-har-path - String. Path to write HAR file. :record-har-mode - Keyword. :full (default) or :minimal. :record-har-content - Keyword. :embed (default), :attach, or :omit. :record-har-omit-content - Boolean. Shorthand for omitting content. :record-har-url-filter - String. Glob pattern to filter URLs.

Returns: Browser$NewContextOptions instance.

Converts a map to Browser$NewContextOptions.

Params:
`opts` - Map with optional keys:
  :viewport        - Map with :width :height or nil to disable.
  :screen          - Map with :width :height.
  :user-agent      - String.
  :locale          - String (e.g. "en-US").
  :timezone-id     - String (e.g. "America/New_York").
  :geolocation     - Map with :latitude :longitude :accuracy.
  :permissions     - Vector of strings.
  :color-scheme    - Keyword (:light :dark :no-preference).
  :ignore-https-errors - Boolean.
  :java-script-enabled - Boolean.
  :bypass-csp      - Boolean.
  :device-scale-factor - Double.
  :is-mobile       - Boolean.
  :has-touch       - Boolean.
  :base-url        - String.
  :storage-state   - String (path or JSON).
  :accept-downloads - Boolean.
  :offline         - Boolean.
  :extra-http-headers - Map of string->string.
  :record-video-dir - String.
  :record-video-size - Map with :width :height.
   :record-har-path  - String. Path to write HAR file.
   :record-har-mode  - Keyword. :full (default) or :minimal.
   :record-har-content - Keyword. :embed (default), :attach, or :omit.
   :record-har-omit-content - Boolean. Shorthand for omitting content.
   :record-har-url-filter - String. Glob pattern to filter URLs.
 
 Returns:
 Browser$NewContextOptions instance.
sourceraw docstring

->new-page-optionsclj

(->new-page-options opts)

Converts a map to Browser$NewPageOptions.

Same shape as ->new-context-options (extends the same base).

Converts a map to Browser$NewPageOptions.

Same shape as ->new-context-options (extends the same base).
sourceraw docstring

->page-add-script-tag-optionsclj

(->page-add-script-tag-options opts)

Converts a map to Page$AddScriptTagOptions.

Converts a map to Page$AddScriptTagOptions.
sourceraw docstring

->page-add-style-tag-optionsclj

(->page-add-style-tag-options opts)

Converts a map to Page$AddStyleTagOptions.

Converts a map to Page$AddStyleTagOptions.
sourceraw docstring

->page-wait-for-function-optionsclj

(->page-wait-for-function-options opts)

Converts a map to Page$WaitForFunctionOptions.

Converts a map to Page$WaitForFunctionOptions.
sourceraw docstring

->page-wait-for-url-optionsclj

(->page-wait-for-url-options opts)

Converts a map to Page$WaitForURLOptions.

Converts a map to Page$WaitForURLOptions.
sourceraw docstring

->pdf-optionsclj

(->pdf-options opts)

Converts a map to Page$PdfOptions.

Converts a map to Page$PdfOptions.
sourceraw docstring

->press-optionsclj

(->press-options opts)

Converts a map to Locator$PressOptions.

Converts a map to Locator$PressOptions.
sourceraw docstring

->reload-optionsclj

(->reload-options opts)

Converts a map to Page$ReloadOptions.

Converts a map to Page$ReloadOptions.
sourceraw docstring

->screen-sizeclj

(->screen-size opts)

Creates a ScreenSize instance.

Params: opts - Map with :width and :height.

Returns: ScreenSize instance.

Creates a ScreenSize instance.

Params:
`opts` - Map with :width and :height.

Returns:
ScreenSize instance.
sourceraw docstring

->screenshot-optionsclj

(->screenshot-options opts)

Converts a map to Page$ScreenshotOptions.

Params: opts - Map with optional keys: :path - String. File path to save screenshot. :full-page - Boolean. Full scrollable page (default: false). :clip - Map with :x :y :width :height. :type - Keyword. :png or :jpeg. :quality - Long. JPEG quality 0-100. :timeout - Double. Maximum time in ms. :omit-background - Boolean.

Returns: Page$ScreenshotOptions instance.

Converts a map to Page$ScreenshotOptions.

Params:
`opts` - Map with optional keys:
  :path       - String. File path to save screenshot.
  :full-page  - Boolean. Full scrollable page (default: false).
  :clip       - Map with :x :y :width :height.
  :type       - Keyword. :png or :jpeg.
  :quality    - Long. JPEG quality 0-100.
  :timeout    - Double. Maximum time in ms.
  :omit-background - Boolean.

Returns:
Page$ScreenshotOptions instance.
sourceraw docstring

->scroll-into-view-optionsclj

(->scroll-into-view-options opts)

Converts a map to Locator$ScrollIntoViewIfNeededOptions.

Converts a map to Locator$ScrollIntoViewIfNeededOptions.
sourceraw docstring

->select-option-optionsclj

(->select-option-options opts)

Converts a map to Locator$SelectOptionOptions.

Converts a map to Locator$SelectOptionOptions.
sourceraw docstring

->set-content-optionsclj

(->set-content-options opts)

Converts a map to Page$SetContentOptions.

Converts a map to Page$SetContentOptions.
sourceraw docstring

->set-input-files-optionsclj

(->set-input-files-options opts)

Converts a map to Locator$SetInputFilesOptions.

Converts a map to Locator$SetInputFilesOptions.
sourceraw docstring

->storage-state-optionsclj

(->storage-state-options opts)

Converts a map to BrowserContext$StorageStateOptions.

Converts a map to BrowserContext$StorageStateOptions.
sourceraw docstring

->tap-optionsclj

(->tap-options opts)

Converts a map to Locator$TapOptions.

Converts a map to Locator$TapOptions.
sourceraw docstring

->text-content-optionsclj

(->text-content-options opts)

Converts a map to Locator$TextContentOptions.

Converts a map to Locator$TextContentOptions.
sourceraw docstring

->tracing-start-optionsclj

(->tracing-start-options opts)

Converts a map to Tracing$StartOptions.

Converts a map to Tracing$StartOptions.
sourceraw docstring

->tracing-stop-optionsclj

(->tracing-stop-options opts)

Converts a map to Tracing$StopOptions.

Converts a map to Tracing$StopOptions.
sourceraw docstring

->type-optionsclj

(->type-options opts)

Converts a map to Locator$TypeOptions.

Converts a map to Locator$TypeOptions.
sourceraw docstring

->uncheck-optionsclj

(->uncheck-options opts)

Converts a map to Locator$UncheckOptions.

Converts a map to Locator$UncheckOptions.
sourceraw docstring

->viewport-sizeclj

(->viewport-size opts)

Creates a ViewportSize instance.

Params: opts - Map with :width and :height.

Returns: ViewportSize instance.

Creates a ViewportSize instance.

Params:
`opts` - Map with :width and :height.

Returns:
ViewportSize instance.
sourceraw docstring

->wait-for-download-optionsclj

(->wait-for-download-options opts)

Converts a map to Page$WaitForDownloadOptions.

Converts a map to Page$WaitForDownloadOptions.
sourceraw docstring

->wait-for-file-chooser-optionsclj

(->wait-for-file-chooser-options opts)

Converts a map to Page$WaitForFileChooserOptions.

Converts a map to Page$WaitForFileChooserOptions.
sourceraw docstring

->wait-for-optionsclj

(->wait-for-options opts)

Converts a map to Locator$WaitForOptions.

Converts a map to Locator$WaitForOptions.
sourceraw docstring

->wait-for-popup-optionsclj

(->wait-for-popup-options opts)

Converts a map to Page$WaitForPopupOptions.

Converts a map to Page$WaitForPopupOptions.
sourceraw docstring

->wait-for-request-finished-optionsclj

(->wait-for-request-finished-options opts)

Converts a map to Page$WaitForRequestFinishedOptions.

Converts a map to Page$WaitForRequestFinishedOptions.
sourceraw docstring

->wait-for-request-optionsclj

(->wait-for-request-options opts)

Converts a map to Page$WaitForRequestOptions.

Converts a map to Page$WaitForRequestOptions.
sourceraw docstring

->wait-for-response-optionsclj

(->wait-for-response-options opts)

Converts a map to Page$WaitForResponseOptions.

Converts a map to Page$WaitForResponseOptions.
sourceraw docstring

->wait-for-selector-optionsclj

(->wait-for-selector-options opts)

Converts a map to Page$WaitForSelectorOptions.

Converts a map to Page$WaitForSelectorOptions.
sourceraw docstring

cljdoc builds & hosts documentation for Clojure/Script libraries

Keyboard shortcuts
Ctrl+kJump to recent docs
Move to previous article
Move to next article
Ctrl+/Jump to the search field
× close