Package com.microsoft.playwright.impl
Class FormDataImpl
- java.lang.Object
-
- com.microsoft.playwright.impl.FormDataImpl
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.util.Map<java.lang.String,java.lang.Object>fields
-
Constructor Summary
Constructors Constructor Description FormDataImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FormDataset(java.lang.String name, boolean value)Sets a field on the form.FormDataset(java.lang.String name, int value)Sets a field on the form.FormDataset(java.lang.String name, FilePayload value)Sets a field on the form.FormDataset(java.lang.String name, java.lang.String value)Sets a field on the form.FormDataset(java.lang.String name, java.nio.file.Path value)Sets a field on the form.
-
-
-
Method Detail
-
set
public FormData set(java.lang.String name, java.lang.String value)
Description copied from interface:FormDataSets a field on the form. File values can be passed either asPathor asFilePayload.
-
set
public FormData set(java.lang.String name, boolean value)
Description copied from interface:FormDataSets a field on the form. File values can be passed either asPathor asFilePayload.
-
set
public FormData set(java.lang.String name, int value)
Description copied from interface:FormDataSets a field on the form. File values can be passed either asPathor asFilePayload.
-
set
public FormData set(java.lang.String name, java.nio.file.Path value)
Description copied from interface:FormDataSets a field on the form. File values can be passed either asPathor asFilePayload.
-
set
public FormData set(java.lang.String name, FilePayload value)
Description copied from interface:FormDataSets a field on the form. File values can be passed either asPathor asFilePayload.
-
-