/** * Detects if the page is being controlled by WebDriver or automation tools derived from it. * Checks for common indicators including: * - navigator.webdriver property (standard WebDriver flag) * - window.document.__webdriver_evaluate (WebDriver internal property) * - window.document.__selenium_unwrapped (Selenium property) * - window.document.__driver_evaluate (WebDriver internal property) * - window.document.__webdriver_script_function (WebDriver internal property) * - window.callPhantom (PhantomJS property) * - window._phantom (PhantomJS property) * - window.__nightmare (Nightmare.js property) * - window.domAutomation (Chrome automation property) * - window.domAutomationController (Chrome automation property) * * @type {boolean} */ export const webdriverDetected: boolean; //# sourceMappingURL=webdriver-detection.d.ts.map