![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/dceprojects.corals.io/vendor/nesk/puphpeteer/src/Resources/ |
<?php namespace Nesk\Puphpeteer\Resources; use Nesk\Puphpeteer\Traits\AliasesSelectionMethods; use Nesk\Puphpeteer\Traits\AliasesEvaluationMethods; /** * @property-read \Nesk\Puphpeteer\Resources\Keyboard keyboard * @property-read \Nesk\Puphpeteer\Resources\Touchscreen touchscreen * @property-read \Nesk\Puphpeteer\Resources\Coverage coverage * @property-read \Nesk\Puphpeteer\Resources\Tracing tracing * @property-read \Nesk\Puphpeteer\Resources\Accessibility accessibility * @property-read \Nesk\Puphpeteer\Resources\Mouse mouse * @method bool isJavaScriptEnabled() * @method \Nesk\Puphpeteer\Resources\FileChooser waitForFileChooser(array<string, mixed> $options = null) * @method void setGeolocation(array<string, mixed> $options) * @method \Nesk\Puphpeteer\Resources\Target target() * @method \Nesk\Puphpeteer\Resources\Browser browser() * @method \Nesk\Puphpeteer\Resources\BrowserContext browserContext() * @method \Nesk\Puphpeteer\Resources\Frame mainFrame() * @method \Nesk\Puphpeteer\Resources\Frame[] frames() * @method \Nesk\Puphpeteer\Resources\WebWorker[] workers() * @method void setRequestInterception(bool $value) * @method void setOfflineMode(bool $enabled) * @method void setDefaultNavigationTimeout(float $timeout) * @method void setDefaultTimeout(float $timeout) * @method mixed evaluateHandle(callable|string $pageFunction, int|float|string|bool|null|array|\Nesk\Puphpeteer\Resources\JSHandle ...$args) * @method \Nesk\Puphpeteer\Resources\JSHandle queryObjects(\Nesk\Puphpeteer\Resources\JSHandle $prototypeHandle) * @method mixed[] cookies(string ...$urls) * @method void deleteCookie(mixed ...$cookies) * @method void setCookie(mixed ...$cookies) * @method \Nesk\Puphpeteer\Resources\ElementHandle addScriptTag(array{ url: string, path: string, content: string, type: string } $options) * @method \Nesk\Puphpeteer\Resources\ElementHandle addStyleTag(array{ url: string, path: string, content: string } $options) * @method void exposeFunction(string $name, callable $puppeteerFunction) * @method void authenticate(mixed $credentials) * @method void setExtraHTTPHeaders(array<string, string> $headers) * @method void setUserAgent(string $userAgent) * @method mixed metrics() * @method string url() * @method string content() * @method void setContent(string $html, array<string, mixed> $options = null) * @method \Nesk\Puphpeteer\Resources\HTTPResponse goto(string $url, array<string, mixed>&array{ referer: string } $options = null) * @method \Nesk\Puphpeteer\Resources\HTTPResponse|null reload(array<string, mixed> $options = null) * @method \Nesk\Puphpeteer\Resources\HTTPResponse|null waitForNavigation(array<string, mixed> $options = null) * @method \Nesk\Puphpeteer\Resources\HTTPRequest waitForRequest(string|callable $urlOrPredicate, array{ timeout: float } $options = null) * @method \Nesk\Puphpeteer\Resources\HTTPResponse waitForResponse(string|callable $urlOrPredicate, array{ timeout: float } $options = null) * @method \Nesk\Puphpeteer\Resources\HTTPResponse|null goBack(array<string, mixed> $options = null) * @method \Nesk\Puphpeteer\Resources\HTTPResponse|null goForward(array<string, mixed> $options = null) * @method void bringToFront() * @method void emulate(array{ viewport: mixed, userAgent: string } $options) * @method void setJavaScriptEnabled(bool $enabled) * @method void setBypassCSP(bool $enabled) * @method void emulateMediaType(string $type = null) * @method void emulateMediaFeatures(mixed[] $features = null) * @method void emulateTimezone(string $timezoneId = null) * @method void emulateIdleState(array{ isUserActive: bool, isScreenUnlocked: bool } $overrides = null) * @method void emulateVisionDeficiency(mixed $type = null) * @method void setViewport(mixed $viewport) * @method mixed|null viewport() * @method mixed evaluate(mixed $pageFunction, int|float|string|bool|null|array|\Nesk\Puphpeteer\Resources\JSHandle ...$args) * @method void evaluateOnNewDocument(callable|string $pageFunction, mixed ...$args) * @method void setCacheEnabled(bool $enabled = null) * @method mixed|string|null screenshot(array<string, mixed> $options = null) * @method mixed pdf(array<string, mixed> $options = null) * @method string title() * @method void close(array{ runBeforeUnload: bool } $options = null) * @method bool isClosed() * @method void click(string $selector, array{ delay: float, button: mixed, clickCount: float } $options = null) * @method void focus(string $selector) * @method void hover(string $selector) * @method string[] select(string $selector, string ...$values) * @method void tap(string $selector) * @method void type(string $selector, string $text, array{ delay: float } $options = null) * @method \Nesk\Puphpeteer\Resources\JSHandle waitFor(string|float|callable $selectorOrFunctionOrTimeout, array{ visible: bool, hidden: bool, timeout: float, polling: string|float } $options = null, int|float|string|bool|null|array|\Nesk\Puphpeteer\Resources\JSHandle ...$args) * @method void waitForTimeout(float $milliseconds) * @method \Nesk\Puphpeteer\Resources\ElementHandle|null waitForSelector(string $selector, array{ visible: bool, hidden: bool, timeout: float } $options = null) * @method \Nesk\Puphpeteer\Resources\ElementHandle|null waitForXPath(string $xpath, array{ visible: bool, hidden: bool, timeout: float } $options = null) * @method \Nesk\Puphpeteer\Resources\JSHandle waitForFunction(callable|string $pageFunction, array{ timeout: float, polling: string|float } $options = null, int|float|string|bool|null|array|\Nesk\Puphpeteer\Resources\JSHandle ...$args) */ class Page extends EventEmitter { use AliasesSelectionMethods, AliasesEvaluationMethods; }