We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 194c05c commit 0673c6aCopy full SHA for 0673c6a
src/Crawler.php
@@ -54,9 +54,6 @@ class Crawler
54
/** @var bool */
55
protected $executeJavaScript = false;
56
57
- /** @var string|null */
58
- protected $pathToChromeBinary = null;
59
-
60
protected static $defaultClientOptions = [
61
RequestOptions::COOKIES => true,
62
RequestOptions::CONNECT_TIMEOUT => 10,
@@ -171,12 +168,10 @@ public function setCrawlQueue(CrawlQueue $crawlQueue)
171
168
/**
172
169
* @return $this
173
170
*/
174
- public function executeJavaScript($pathToChromeBinary = null)
+ public function executeJavaScript()
175
{
176
$this->executeJavaScript = true;
177
178
- $this->pathToChromeBinary = $pathToChromeBinary;
179
180
return $this;
181
}
182
0 commit comments