Home
last modified time | relevance | path

Searched refs:execute (Results 51 – 75 of 390) sorted by last modified time

12345678910>>...16

/plugin/combo/vendor/php-webdriver/webdriver/lib/Support/Events/
H A DEventFiringWebDriver.php367 public function execute($name, $params) function in Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriver
370 return $this->driver->execute($name, $params);
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriver.php129 public function execute($name, $params); function
H A DWebDriverAlert.php30 $this->executor->execute(DriverCommand::ACCEPT_ALERT);
42 $this->executor->execute(DriverCommand::DISMISS_ALERT);
54 return $this->executor->execute(DriverCommand::GET_ALERT_TEXT);
65 $this->executor->execute(
H A DWebDriverNavigation.php19 $this->executor->execute(DriverCommand::GO_BACK);
26 $this->executor->execute(DriverCommand::GO_FORWARD);
33 $this->executor->execute(DriverCommand::REFRESH);
41 $this->executor->execute(DriverCommand::GET, $params);
H A DWebDriverOptions.php46 $this->executor->execute(
61 $this->executor->execute(DriverCommand::DELETE_ALL_COOKIES);
74 $this->executor->execute(
92 $cookieArray = $this->executor->execute(
121 $cookieArrays = $this->executor->execute(DriverCommand::GET_ALL_COOKIES);
164 return $this->executor->execute(
178 return $this->executor->execute(DriverCommand::GET_AVAILABLE_LOG_TYPES);
H A DWebDriverTimeouts.php37 $this->executor->execute(
45 $this->executor->execute(
62 $this->executor->execute(
70 $this->executor->execute(
87 $this->executor->execute(
95 $this->executor->execute(DriverCommand::SET_TIMEOUT, [
H A DWebDriverWindow.php38 $position = $this->executor->execute(
57 $size = $this->executor->execute(
79 $this->executor->execute(DriverCommand::MINIMIZE_WINDOW, []);
92 $this->executor->execute(DriverCommand::MAXIMIZE_WINDOW, []);
94 $this->executor->execute(
114 $this->executor->execute(DriverCommand::FULLSCREEN_WINDOW, []);
133 $this->executor->execute(DriverCommand::SET_WINDOW_SIZE, $params);
152 $this->executor->execute(DriverCommand::SET_WINDOW_POSITION, $params);
164 return $this->executor->execute(DriverCommand::GET_SCREEN_ORIENTATION);
184 $this->executor->execute(
[all...]
/plugin/combo/syntax/
H A Dvariable.php149 $execute = PipelineUtility::execute($expression);
154 $renderer->doc .= $execute;
/plugin/combo/action/
H A Drouter.php1051 ->execute();
/plugin/combo/ComboStrap/Meta/Field/
H A DBacklinkCount.php97 ->execute()
/plugin/combo/ComboStrap/
H A DDatabasePageRow.php412 $request->execute();
612 ->execute()
693 ->execute()
915 ->execute()
971 ->execute()
1051 ->execute()
1156 ->execute()
1331 ->execute()
H A DPipelineUtility.php37 static public function execute($expression, array $contextData = null): string function in ComboStrap\\PipelineUtility
H A DSqlite.php426 ->execute()
446 ->execute()
H A DSqliteRequest.php71 public function execute(): SqliteResult
188 * @return $this - a statement that will execute
61 public function execute(): SqliteResult global() function in ComboStrap\\SqliteRequest
H A DEvent.php87 $rows = $request->execute()
117 $rowsSelected = $request->execute()
135 $changeCount = $request->execute()->getChangeCount();
217 $request->execute();
268 return $request->execute()
297 return $request->execute()
/plugin/combo/
H A Dcli.php424 ->execute()
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerAction.php50 public function execute(Lexer $lexer) : void; function
H A DLexerChannelAction.php67 public function execute(Lexer $lexer) : void function in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerChannelAction
H A DLexerCustomAction.php97 public function execute(Lexer $lexer) : void function in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerCustomAction
H A DLexerIndexedCustomAction.php40 * @param LexerAction $action The lexer action to execute at a particular
63 * Gets the lexer action to execute.
98 * This method calls {@see LexerIndexedCustomAction::execute()} on the result
101 public function execute(Lexer $lexer) : void function in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerIndexedCustomAction
104 $this->action->execute($lexer);
/plugin/combo/ComboStrap/Meta/Store/
H A DMetadataDbStore.php190 $request->execute();
221 $request->execute();
265 ->execute()
/plugin/combo/vendor/php-webdriver/webdriver/
H A DREADME.md53 from this library and will execute them in the respective browser.
85 Selenium server can be useful when you need to execute multiple tests at once,
/plugin/combo/vendor/php-webdriver/webdriver/lib/Chrome/
H A DChromeDevToolsDriver.php16 'url' => '/session/:sessionId/goog/cdp/execute',
32 * @param string $command The DevTools command to execute
36 public function execute($command, array $parameters = []) function in Facebook\\WebDriver\\Chrome\\ChromeDevToolsDriver
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteTargetLocator.php35 $this->executor->execute(DriverCommand::SWITCH_TO_FRAME, $params);
73 $this->executor->execute(DriverCommand::SWITCH_TO_FRAME, $params);
85 $this->executor->execute(DriverCommand::SWITCH_TO_PARENT_FRAME, []);
102 $this->executor->execute(DriverCommand::SWITCH_TO_WINDOW, $params);
127 $response = $this->executor->execute(DriverCommand::NEW_WINDOW, ['type' => $windowType]);
144 $response = $this->driver->execute(DriverCommand::GET_ACTIVE_ELEMENT, []);
/plugin/combo/vendor/dragonmantank/cron-expression/
H A DREADME.md54 A CRON expression is a string representing the schedule for a particular command to execute. The parts of a CRON schedule are as follows:

12345678910>>...16