UNPKG

@luminati-io/webdriverio8

Version:

Next-gen browser and mobile automation test framework for Node.js

87 lines (81 loc) 4.98 kB
import { ELEMENT_KEY } from '../../constants.js'; import { getBrowserObject, hasElementId } from '../../utils/index.js'; import isElementDisplayedScript from '../../scripts/isElementDisplayed.js'; /** * * Return true if the selected DOM-element is displayed (even when the element is outside the viewport). * If you want to verify that the element is also not within the viewport, use the isDisplayedInViewport command. * * :::info * * As opposed to other element commands WebdriverIO will not wait for the element * to exist to execute this command. * * ::: * * WebdriverIO, when conducting browser tests, utilizes a [custom script](https://github.com/webdriverio/webdriverio/blob/59d349ca847950354d02b9e548f60cc50e7871f0/packages/webdriverio/src/scripts/isElementDisplayed.ts) * specifically designed to assess the visibility of elements. This script is key in determining whether an * element is displayed on the page. Conversely, for native mobile testing scenarios with Appium, WebdriverIO * defers to the [`isElementDisplayed`](https://appium.io/docs/en/2.1/reference/interfaces/appium_types.ExternalDriver/#elementdisplayed) * command provided by Appium. This command evaluates the visibility of elements using criteria established by the * underlying Appium driver, ensuring accurate and driver-specific assessments for mobile applications. * * <example> :index.html <div id="noSize"></div> <div id="noSizeWithContent">Hello World!</div> <div id="notDisplayed" style="width: 10px; height: 10px; display: none"></div> <div id="notVisible" style="width: 10px; height: 10px; visibility: hidden"></div> <div id="zeroOpacity" style="width: 10px; height: 10px; opacity: 0"></div> <div id="notInViewport" style="width: 10px; height: 10px; position:fixed; top: 999999; left: 999999"></div> :isDisplayed.js it('should detect if an element is displayed', async () => { elem = await $('#notExisting'); isDisplayed = await elem.isDisplayed(); console.log(isDisplayed); // outputs: false let elem = await $('#noSize'); let isDisplayed = await elem.isDisplayed(); console.log(isDisplayed); // outputs: false let elem = await $('#noSizeWithContent'); let isDisplayed = await elem.isDisplayed(); console.log(isDisplayed); // outputs: true let elem = await $('#notDisplayed'); let isDisplayed = await elem.isDisplayed(); console.log(isDisplayed); // outputs: false elem = await $('#notVisible'); isDisplayed = await elem.isDisplayed(); console.log(isDisplayed); // outputs: false elem = await $('#zeroOpacity'); isDisplayed = await elem.isDisplayed(); console.log(isDisplayed); // outputs: false elem = await $('#notInViewport'); isDisplayed = await elem.isDisplayed(); console.log(isDisplayed); // outputs: true }); * </example> * * @alias element.isDisplayed * @return {Boolean} true if element is displayed * @uses protocol/elements, protocol/elementIdDisplayed * @type state * */ export async function isDisplayed() { const browser = getBrowserObject(this); if (!await hasElementId(this)) { return false; } /** * For mobile sessions with Appium we continue to use the elementDisplayed command * as we can't run JS in native apps */ const isNativeApplication = !browser.capabilities.browserName; if (browser.isMobile && isNativeApplication) { return await this.isElementDisplayed(this.elementId); } return await browser.execute(isElementDisplayedScript, { [ELEMENT_KEY]: this.elementId, // w3c compatible ELEMENT: this.elementId // jsonwp compatible }); } //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNEaXNwbGF5ZWQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29tbWFuZHMvZWxlbWVudC9pc0Rpc3BsYXllZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sb0JBQW9CLENBQUE7QUFDaEQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLFlBQVksRUFBRSxNQUFNLHNCQUFzQixDQUFBO0FBQ3JFLE9BQU8sd0JBQXdCLE1BQU0scUNBQXFDLENBQUE7QUFFMUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0FnRUc7QUFDSCxNQUFNLENBQUMsS0FBSyxVQUFVLFdBQVc7SUFDN0IsTUFBTSxPQUFPLEdBQUcsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLENBQUE7SUFFdEMsSUFBSSxDQUFDLE1BQU0sWUFBWSxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUM7UUFDNUIsT0FBTyxLQUFLLENBQUE7SUFDaEIsQ0FBQztJQUVEOzs7T0FHRztJQUNILE1BQU0sbUJBQW1CLEdBQUcsQ0FBRSxPQUFPLENBQUMsWUFBeUMsQ0FBQyxXQUFXLENBQUE7SUFDM0YsSUFBSSxPQUFPLENBQUMsUUFBUSxJQUFJLG1CQUFtQixFQUFFLENBQUM7UUFDMUMsT0FBTyxNQUFNLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUE7SUFDeEQsQ0FBQztJQUVELE9BQU8sTUFBTSxPQUFPLENBQUMsT0FBTyxDQUFDLHdCQUF3QixFQUFFO1FBQ25ELENBQUMsV0FBVyxDQUFDLEVBQUUsSUFBSSxDQUFDLFNBQVMsRUFBRSxpQkFBaUI7UUFDaEQsT0FBTyxFQUFFLElBQUksQ0FBQyxTQUFTLENBQUMsb0JBQW9CO0tBQ3pCLENBQUMsQ0FBQTtBQUM1QixDQUFDIn0=