Lines Matching defs:url
31 const URL = "url";
33 private Url $url;
43 function getFetchUrl(Url $url = null): Url
45 $url = parent::getFetchUrl($url);
47 $url->addQueryParameter(self::URL, $this->getUrlToSnapshot());
51 return $url;
63 throw new ExceptionBadArgument("The `url` property is mandatory");
65 $this->url = Url::createFromString($urlString);
82 $url = $this->getUrlToSnapshot();
119 $webDriver->get($url->toAbsoluteUrlString());
179 $lastNameWithoutExtension = $url->getLastNameWithoutExtension();
181 $lastNameWithoutExtension = $url->getHost();
238 $this->url = $urlToSnapshot;
247 if (!isset($this->url)) {
248 throw new ExceptionNotFound("No url to snapshot could be determined");
250 return $this->url;