You are here

public function BrowserFileTrait::selectFile in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/jcalderonzumba/gastonjs/src/Browser/BrowserFileTrait.php \Zumba\GastonJS\Browser\BrowserFileTrait::selectFile()

Selects a file to send to the browser to a given page

Parameters

$pageId:

$elementId:

$value:

Return value

mixed

File

vendor/jcalderonzumba/gastonjs/src/Browser/BrowserFileTrait.php, line 17

Class

BrowserFileTrait
Trait BrowserFileTrait @package Zumba\GastonJS\Browser

Namespace

Zumba\GastonJS\Browser

Code

public function selectFile($pageId, $elementId, $value) {
  return $this
    ->command('select_file', $pageId, $elementId, $value);
}