Skip to content

Update WebDriver.php: executeJS: Removing jQuery #127

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions src/Codeception/Module/WebDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -2874,16 +2874,13 @@ public function waitForJS(string $script, int $timeout = 5): void
}

/**
* Executes custom JavaScript.
*
* This example uses jQuery to get a value and assigns that value to a PHP variable:
* Executes JavaScript commands.
*
* ```php
* <?php
* $myVar = $I->executeJS('return $("#myField").val()');
* $myVar = $I->executeJS('return document.getElementById("myField").value');
*
* // additional arguments can be passed as array
* // Example shows `Hello World` alert:
* // Additional arguments can be passed as array. E.g. this will alert `Hello World`:
* $I->executeJS("window.alert(arguments[0])", ['Hello world']);
* ```
*
Expand Down