How to use checkMask method in Playwright Internal

Best JavaScript code snippet using playwright-internal

propertyDescriptors.js

Source:propertyDescriptors.js Github

copy

Full Screen

...158let i: number = -1159while (++i < len) {160 const key: string = keys[i]161 const prop: number = props[key]162 const hasLowerCase: boolean = checkMask(prop, HAS_LOWER_CASE)163 const hasDashedCase: boolean = checkMask(prop, HAS_DASHED_CASE)164 const hasEventCase: boolean = checkMask(prop, HAS_EVENT_CASE)165 const useEqualSetter: boolean = checkMask(prop, USE_EQUAL_SETTER)166 const useSetAttribute: boolean = checkMask(prop, USE_SET_ATTRIBUTE)167 const useEventListener: boolean = checkMask(prop, USE_EVENT_LISTENER)168 const hasBooleanValue: boolean = checkMask(prop, HAS_BOOLEAN_VALUE)169 const hasNumberValue: boolean = checkMask(prop, HAS_NUMBER_VALUE)170 const isStar: boolean = checkMask(prop, IS_STAR)171 const computed: string = computeName(key, hasLowerCase, hasDashedCase, hasEventCase)172 descriptors[key] = {173 useEqualSetter,174 useSetAttribute,175 useEventListener,176 hasBooleanValue,177 hasNumberValue,178 isStar,179 computed,180 }181}...

Full Screen

Full Screen

DOMProperty.js

Source:DOMProperty.js Github

copy

Full Screen

1/* */ 2(function(process) {3 'use strict';4 var invariant = require("./invariant");5 function checkMask(value, bitmask) {6 return (value & bitmask) === bitmask;7 }8 var DOMPropertyInjection = {9 MUST_USE_ATTRIBUTE: 0x1,10 MUST_USE_PROPERTY: 0x2,11 HAS_SIDE_EFFECTS: 0x4,12 HAS_BOOLEAN_VALUE: 0x8,13 HAS_NUMERIC_VALUE: 0x10,14 HAS_POSITIVE_NUMERIC_VALUE: 0x20 | 0x10,15 HAS_OVERLOADED_BOOLEAN_VALUE: 0x40,16 injectDOMPropertyConfig: function(domPropertyConfig) {17 var Properties = domPropertyConfig.Properties || {};18 var DOMAttributeNames = domPropertyConfig.DOMAttributeNames || {};19 var DOMPropertyNames = domPropertyConfig.DOMPropertyNames || {};20 var DOMMutationMethods = domPropertyConfig.DOMMutationMethods || {};21 if (domPropertyConfig.isCustomAttribute) {22 DOMProperty._isCustomAttributeFunctions.push(domPropertyConfig.isCustomAttribute);23 }24 for (var propName in Properties) {25 ("production" !== process.env.NODE_ENV ? invariant(!DOMProperty.isStandardName.hasOwnProperty(propName), 'injectDOMPropertyConfig(...): You\'re trying to inject DOM property ' + '\'%s\' which has already been injected. You may be accidentally ' + 'injecting the same DOM property config twice, or you may be ' + 'injecting two configs that have conflicting property names.', propName) : invariant(!DOMProperty.isStandardName.hasOwnProperty(propName)));26 DOMProperty.isStandardName[propName] = true;27 var lowerCased = propName.toLowerCase();28 DOMProperty.getPossibleStandardName[lowerCased] = propName;29 if (DOMAttributeNames.hasOwnProperty(propName)) {30 var attributeName = DOMAttributeNames[propName];31 DOMProperty.getPossibleStandardName[attributeName] = propName;32 DOMProperty.getAttributeName[propName] = attributeName;33 } else {34 DOMProperty.getAttributeName[propName] = lowerCased;35 }36 DOMProperty.getPropertyName[propName] = DOMPropertyNames.hasOwnProperty(propName) ? DOMPropertyNames[propName] : propName;37 if (DOMMutationMethods.hasOwnProperty(propName)) {38 DOMProperty.getMutationMethod[propName] = DOMMutationMethods[propName];39 } else {40 DOMProperty.getMutationMethod[propName] = null;41 }42 var propConfig = Properties[propName];43 DOMProperty.mustUseAttribute[propName] = checkMask(propConfig, DOMPropertyInjection.MUST_USE_ATTRIBUTE);44 DOMProperty.mustUseProperty[propName] = checkMask(propConfig, DOMPropertyInjection.MUST_USE_PROPERTY);45 DOMProperty.hasSideEffects[propName] = checkMask(propConfig, DOMPropertyInjection.HAS_SIDE_EFFECTS);46 DOMProperty.hasBooleanValue[propName] = checkMask(propConfig, DOMPropertyInjection.HAS_BOOLEAN_VALUE);47 DOMProperty.hasNumericValue[propName] = checkMask(propConfig, DOMPropertyInjection.HAS_NUMERIC_VALUE);48 DOMProperty.hasPositiveNumericValue[propName] = checkMask(propConfig, DOMPropertyInjection.HAS_POSITIVE_NUMERIC_VALUE);49 DOMProperty.hasOverloadedBooleanValue[propName] = checkMask(propConfig, DOMPropertyInjection.HAS_OVERLOADED_BOOLEAN_VALUE);50 ("production" !== process.env.NODE_ENV ? invariant(!DOMProperty.mustUseAttribute[propName] || !DOMProperty.mustUseProperty[propName], 'DOMProperty: Cannot require using both attribute and property: %s', propName) : invariant(!DOMProperty.mustUseAttribute[propName] || !DOMProperty.mustUseProperty[propName]));51 ("production" !== process.env.NODE_ENV ? invariant(DOMProperty.mustUseProperty[propName] || !DOMProperty.hasSideEffects[propName], 'DOMProperty: Properties that have side effects must use property: %s', propName) : invariant(DOMProperty.mustUseProperty[propName] || !DOMProperty.hasSideEffects[propName]));52 ("production" !== process.env.NODE_ENV ? invariant(!!DOMProperty.hasBooleanValue[propName] + !!DOMProperty.hasNumericValue[propName] + !!DOMProperty.hasOverloadedBooleanValue[propName] <= 1, 'DOMProperty: Value can be one of boolean, overloaded boolean, or ' + 'numeric value, but not a combination: %s', propName) : invariant(!!DOMProperty.hasBooleanValue[propName] + !!DOMProperty.hasNumericValue[propName] + !!DOMProperty.hasOverloadedBooleanValue[propName] <= 1));53 }54 }55 };56 var defaultValueCache = {};57 var DOMProperty = {58 ID_ATTRIBUTE_NAME: 'data-reactid',59 isStandardName: {},60 getPossibleStandardName: {},61 getAttributeName: {},62 getPropertyName: {},63 getMutationMethod: {},...

Full Screen

Full Screen

CompareTest.js

Source:CompareTest.js Github

copy

Full Screen

...39 // // DOCUMENT_POSITION_CONTAINS 840 // // DOCUMENT_POSITION_CONTAINED_BY 1641 // // DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC 3242 // // Text Node vs Element43 // checkMask(Node.DOCUMENT_POSITION_FOLLOWING | Node.DOCUMENT_POSITION_CONTAINED_BY,44 // TestPage.container, TestPage.t6);45 // checkMask(Node.DOCUMENT_POSITION_PRECEDING | Node.DOCUMENT_POSITION_CONTAINS,46 // TestPage.t6, TestPage.container);47 // checkMask(Node.DOCUMENT_POSITION_FOLLOWING | Node.DOCUMENT_POSITION_CONTAINED_BY,48 // TestPage.p3, TestPage.t6); // t6 following and contained-by p349 // checkMask(Node.DOCUMENT_POSITION_PRECEDING | Node.DOCUMENT_POSITION_CONTAINS,50 // TestPage.t6, TestPage.p3); // p3 preceding and contains t651 // checkMask(Node.DOCUMENT_POSITION_FOLLOWING,52 // TestPage.t1, TestPage.s2);53 // checkMask(Node.DOCUMENT_POSITION_PRECEDING,54 // TestPage.s2, TestPage.t1);55 // // Text Node vs Text Node56 // checkMask(Node.DOCUMENT_POSITION_FOLLOWING,57 // TestPage.t7, TestPage.t6); // t6 following t758 // checkMask(Node.DOCUMENT_POSITION_PRECEDING,59 // TestPage.t6, TestPage.t7);60 // checkMask(Node.DOCUMENT_POSITION_FOLLOWING,61 // TestPage.t1, TestPage.t7);62 // checkMask(Node.DOCUMENT_POSITION_PRECEDING,63 // TestPage.t7, TestPage.t1);64 // // Element vs Element65 // checkMask(Node.DOCUMENT_POSITION_FOLLOWING | Node.DOCUMENT_POSITION_CONTAINED_BY,66 // TestPage.container, TestPage.d1);67 // checkMask(Node.DOCUMENT_POSITION_PRECEDING | Node.DOCUMENT_POSITION_CONTAINS,68 // TestPage.d1, TestPage.container);69 // checkMask(Node.DOCUMENT_POSITION_FOLLOWING,70 // TestPage.p1, TestPage.s2);71 // checkMask(Node.DOCUMENT_POSITION_PRECEDING,72 // TestPage.s2, TestPage.p1);73 // Text Node vs Element74 assert.eq(true, Compare.contains(TestPage.container, TestPage.t6));75 assert.eq(false, Compare.contains(TestPage.t6, TestPage.container));76 assert.eq(true, Compare.contains(TestPage.p3, TestPage.t6));77 assert.eq(false, Compare.contains(TestPage.t6, TestPage.p3));78 assert.eq(false, Compare.contains(TestPage.t1, TestPage.s2));79 assert.eq(false, Compare.contains(TestPage.s2, TestPage.t1));80 // Text Node vs Text Node81 assert.eq(false, Compare.contains(TestPage.t7, TestPage.t6));82 assert.eq(false, Compare.contains(TestPage.t6, TestPage.t7));83 assert.eq(false, Compare.contains(TestPage.t6, TestPage.t6)); // does not contain itself84 // Element vs Element85 assert.eq(true, Compare.contains(TestPage.container, TestPage.d1));...

Full Screen

Full Screen

index.js

Source:index.js Github

copy

Full Screen

2 Adapted from https://github.com/facebook/react/blob/c265504fe2fdeadf0e5358879a3c141628b37a23/src/renderers/dom/shared/HTMLDOMPropertyConfig.js3 */4var masks = require('./masks');5var HTMLDOMPropertyConfig = require('./property-config');6function checkMask(value, bitmask) {7 return (value & bitmask) === bitmask;8}9var getPropertyInfo = (function () {10 var propInfoByAttributeName = {};11 Object.keys(HTMLDOMPropertyConfig.Properties).forEach(function (propName) {12 var propConfig = HTMLDOMPropertyConfig.Properties[propName];13 var attributeName = HTMLDOMPropertyConfig.PropertyToAttributeMapping[propName] || propName.toLowerCase();14 var propertyInfo = {15 attributeName: attributeName,16 propertyName: propName,17 mustUseAttribute: checkMask(propConfig, masks.MUST_USE_ATTRIBUTE),18 mustUseProperty: checkMask(propConfig, masks.MUST_USE_PROPERTY),19 hasBooleanValue: checkMask(propConfig, masks.HAS_BOOLEAN_VALUE),20 hasNumericValue: checkMask(propConfig, masks.HAS_NUMERIC_VALUE),21 hasPositiveNumericValue: checkMask(propConfig, masks.HAS_POSITIVE_NUMERIC_VALUE),22 hasOverloadedBooleanValue: checkMask(propConfig, masks.HAS_OVERLOADED_BOOLEAN_VALUE)23 };24 propInfoByAttributeName[attributeName] = propertyInfo;25 });26 return function getPropertyInfo (attributeName) {27 var lowerCased = attributeName.toLowerCase();28 var propInfo;29 if (propInfoByAttributeName.hasOwnProperty(lowerCased)) {30 propInfo = propInfoByAttributeName[lowerCased];31 }32 else {33 propInfo = {34 attributeName: attributeName,35 mustUseAttribute: true,36 isCustomAttribute: true...

Full Screen

Full Screen

masks-spec.js

Source:masks-spec.js Github

copy

Full Screen

...17 expect(test4Mask).toBe(undefined);18 done();19 });20 it("should return the correct number of values for each mask", function(done) {21 expect(mask.checkMask(test1Mask).length).toBe(1);22 expect(mask.checkMask(test2Mask).length).toBe(1);23 expect(mask.checkMask(test4Mask).length).toBe(0);24 done();25 });26 it("should return the correct value for the given masks", function(done) {27 //console.log(mask.checkMask(t13Masks).length)28 expect(mask.checkMask(test3Mask)[0]).toBe("test3");29 expect(mask.checkMask(t13Masks)[0]).toBe("test1");30 expect(mask.checkMask(t13Masks)[1]).toBe("test3");31 expect(mask.checkMask(t13Masks).length).toBe(2);32 expect(mask.checkMask(t123Mask).length).toBe(3);33 done();34 });...

Full Screen

Full Screen

checkmask.filter.js

Source:checkmask.filter.js Github

copy

Full Screen

1(function () {2 'use strict';3 angular4 .module('app.core')5 .filter('checkmask', checkmask);6 function checkmask() {7 return checkmaskFilter;8 //--------------------------------9 function checkmaskFilter(input) {10 return (input === true) ? '\u2713' : '\u2718';11 }12 }...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1const { checkMask } = require('playwright/lib/internal/utils');2const { chromium } = require('playwright');3(async () => {4 const browser = await chromium.launch();5 const context = await browser.newContext();6 const page = await context.newPage();7 await page.screenshot({ path: 'example.png' });8 await browser.close();9})();10const { checkMask } = require('playwright/lib/internal/utils');11const { checkMask } = require('playwright/lib/internal/utils');12const { checkMask } = require('playwright/lib/internal/utils');13const { checkMask } = require('playwright/lib/internal/utils');14const { checkMask } = require('playwright/lib/internal/utils');15const { checkMask } = require('playwright/lib/internal/utils');16console.log(checkMask(0b1010,

Full Screen

Using AI Code Generation

copy

Full Screen

1const { checkMask } = require("playwright");2const { chromium } = require("playwright");3(async () => {4 const browser = await chromium.launch();5 const context = await browser.newContext();6 const page = await context.newPage();7 const result = await checkMask("1234567890");8 console.log(result);9 await browser.close();10})();11const { checkMask } = require("playwright");12const { chromium } = require("playwright");13(async () => {14 const browser = await chromium.launch();15 const context = await browser.newContext();16 const page = await context.newPage();17 const result = await checkMask("1234567890", "1234567890");18 console.log(result);19 await browser.close();20})();21const { checkMask } = require("playwright");22const { chromium } = require("playwright");23(async () => {24 const browser = await chromium.launch();25 const context = await browser.newContext();26 const page = await context.newPage();27 const result = await checkMask("1234567890", "1234567890", "1234567890");28 console.log(result);29 await browser.close();30})();31const { checkMask } = require("playwright");32const { chromium } = require("playwright");33(async () => {34 const browser = await chromium.launch();35 const context = await browser.newContext();36 const page = await context.newPage();37 const result = await checkMask("1234567890", "1234567890", "1234567890");38 console.log(result);39 await browser.close();40})();41const { checkMask } = require("playwright");42const { chromium } = require("playwright");43(async () => {44 const browser = await chromium.launch();45 const context = await browser.newContext();46 const page = await context.newPage();

Full Screen

Using AI Code Generation

copy

Full Screen

1const { checkMask } = require('playwright/lib/server/chromium/crPage.js');2const { chromium } = require('playwright');3(async () => {4 const browser = await chromium.launch();5 const context = await browser.newContext();6 const page = await context.newPage();7 const screenshot = await page.screenshot();8 const mask = await checkMask(screenshot);9 console.log(mask);10 await browser.close();11})();12Please read [CONTRIBUTING.md](

Full Screen

Using AI Code Generation

copy

Full Screen

1const { checkMask } = require('playwright-core/lib/server/supplements/recorder/recorderApp');2const { chromium } = require('playwright-core');3const fs = require('fs');4const path = require('path');5(async () => {6 const browser = await chromium.launch();7 const context = await browser.newContext();8 const page = await context.newPage();9 const mask = await page.evaluate(() => {10 const element = document.querySelector('#tsf');11 return window.__playwright__internal__checkMask(element);12 });13 fs.writeFileSync(path.join(__dirname, 'mask.json'), JSON.stringify(mask, null, 2));14 await browser.close();15})();16{17}18const { test, expect } = require('@playwright/test');19const fs = require('fs');20const path = require('path');21test('should pass', async ({ page }) => {22 const mask = JSON.parse(fs.readFileSync(path.join(__dirname, 'mask.json'), 'utf-8'));23 const element = await page.$(mask);24 expect(element).toBeTruthy();25});26const { test, expect } = require('@playwright/test');27const fs = require('fs');28const path = require('path');29test('should pass', async ({ page }) => {30 const mask = JSON.parse(fs.readFileSync(path.join(__dirname, 'mask.json'), 'utf-8'));31 const element = await page.$(mask);32 expect(element).toBeTruthy();33});34const { test, expect } = require('@playwright/test');35const fs = require('fs');36const path = require('

Full Screen

Using AI Code Generation

copy

Full Screen

1const { checkMask } = require('@playwright/test/lib/server/frames');2const { Page } = require('@playwright/test/lib/server/page');3const { Frame } = require('@playwright/test/lib/server/frames');4const { checkMask } = require('@playwright/test/lib/server/frames');5const { Page } = require('@playwright/test/lib/server/page');6const { Frame } = require('@playwright/test/lib/server/frames');7const { checkMask } = require('@playwright/test/lib/server/frames');8const { Page } = require('@playwright/test/lib/server/page');9const { Frame } = require('@playwright/test/lib/server/frames');10const { checkMask } = require('@playwright/test/lib/server/frames');11const { Page } = require('@playwright/test/lib/server/page');12const { Frame } = require('@playwright/test/lib/server/frames');13const { checkMask } = require('@playwright/test/lib/server/frames');14const { Page } = require('@playwright/test/lib/server/page');15const { Frame } = require('@playwright/test/lib/server/frames');16const { checkMask } = require('@playwright/test/lib/server/frames');17const { Page } = require('@playwright/test/lib/server/page');18const { Frame } = require('@playwright/test/lib/server/frames');19const { checkMask } = require('@playwright/test/lib/server/frames');20const { Page } = require('@playwright/test/lib/server/page');21const { Frame } = require('@playwright/test/lib/server/frames');22const { checkMask } = require('@playwright/test/lib/server/frames');23const { Page } = require('@playwright/test/lib/server/page');24const { Frame } = require('@playwright/test/lib/server/frames');25const { checkMask } = require('@playwright/test/lib/server/frames');26const { Page } = require('@playwright/test/lib/server/page');27const { Frame

Full Screen

Using AI Code Generation

copy

Full Screen

1const { checkMask } = require('playwright-core/lib/utils/utils');2const { Page } = require('playwright-core/lib/server/page');3const { Frame } = require('playwright-core/lib/server/frames');4const { ElementHandle } = require('playwright-core/lib/server/dom');5const { JSHandle } = require('playwright-core/lib/server/jsHandle');6const page = new Page();7const frame = new Frame(page, 'frame1', null);8const elementHandle = new ElementHandle(frame, 'elementHandle1', null);9const jsHandle = new JSHandle(frame, 'jsHandle1', null);10console.log(checkMask(page, 268435456

Full Screen

Using AI Code Generation

copy

Full Screen

1const { checkMask } = require('playwright/lib/utils/utils');2const mask = '************';3const value = '1234-5678-9012-3456';4const maskedValue = checkMask(mask, value);5console.log(maskedValue);6const { checkMask } = require('playwright/lib/utils/utils');7const mask = '************';8const value = '1234-5678-9012-3456';9const maskedValue = checkMask(mask, value);10console.log(maskedValue);11const { checkMask } = require('playwright/lib/utils/utils');12const mask = '************';13const value = '1234-5678-9012-3456';14const maskedValue = checkMask(mask, value);15console.log(maskedValue);16const { checkMask } = require('playwright/lib/utils/utils');17const mask = '************';18const value = '1234-5678-9012-3456';19const maskedValue = checkMask(mask, value);20console.log(maskedValue);21const { checkMask } = require('playwright/lib/utils/utils');22const mask = '************';23const value = '1234-5678-9012-3456';24const maskedValue = checkMask(mask, value);25console.log(maskedValue);26const { checkMask } = require('playwright/lib/utils/utils');27const mask = '************';28const value = '1234-5678-9012-3456';29const maskedValue = checkMask(mask, value);30console.log(maskedValue);

Full Screen

Using AI Code Generation

copy

Full Screen

1const {checkMask} = require('playwright/lib/internal/trace/recorder/masks');2const mask = checkMask('test');3console.log(mask);4const {checkMask} = require('playwright/lib/internal/trace/recorder/masks');5const mask = checkMask('test');6console.log(mask);7const {checkMask} = require('playwright/lib/internal/trace/recorder/masks');8const mask = checkMask('test');9console.log(mask);10const {checkMask} = require('playwright/lib/internal/trace/recorder/masks');11const mask = checkMask('test');12console.log(mask);13const {checkMask} = require('playwright/lib/internal/trace/recorder/masks');14const mask = checkMask('test');15console.log(mask);16const {checkMask} = require('playwright/lib/internal/trace/recorder/masks');17const mask = checkMask('test');18console.log(mask);19const {checkMask} = require('playwright/lib/internal/trace/recorder/masks');20const mask = checkMask('test');21console.log(mask);22const {checkMask} = require('playwright/lib/internal/trace/recorder/masks');23const mask = checkMask('test');24console.log(mask);25const {checkMask} = require('playwright/lib/internal/trace/recorder/masks');26const mask = checkMask('test');27console.log(mask);28const {checkMask} = require('playwright/lib/internal/trace/recorder/masks');29const mask = checkMask('test');30console.log(mask);31const {checkMask} = require('

Full Screen

Playwright tutorial

LambdaTest’s Playwright tutorial will give you a broader idea about the Playwright automation framework, its unique features, and use cases with examples to exceed your understanding of Playwright testing. This tutorial will give A to Z guidance, from installing the Playwright framework to some best practices and advanced concepts.

Chapters:

  1. What is Playwright : Playwright is comparatively new but has gained good popularity. Get to know some history of the Playwright with some interesting facts connected with it.
  2. How To Install Playwright : Learn in detail about what basic configuration and dependencies are required for installing Playwright and run a test. Get a step-by-step direction for installing the Playwright automation framework.
  3. Playwright Futuristic Features: Launched in 2020, Playwright gained huge popularity quickly because of some obliging features such as Playwright Test Generator and Inspector, Playwright Reporter, Playwright auto-waiting mechanism and etc. Read up on those features to master Playwright testing.
  4. What is Component Testing: Component testing in Playwright is a unique feature that allows a tester to test a single component of a web application without integrating them with other elements. Learn how to perform Component testing on the Playwright automation framework.
  5. Inputs And Buttons In Playwright: Every website has Input boxes and buttons; learn about testing inputs and buttons with different scenarios and examples.
  6. Functions and Selectors in Playwright: Learn how to launch the Chromium browser with Playwright. Also, gain a better understanding of some important functions like “BrowserContext,” which allows you to run multiple browser sessions, and “newPage” which interacts with a page.
  7. Handling Alerts and Dropdowns in Playwright : Playwright interact with different types of alerts and pop-ups, such as simple, confirmation, and prompt, and different types of dropdowns, such as single selector and multi-selector get your hands-on with handling alerts and dropdown in Playright testing.
  8. Playwright vs Puppeteer: Get to know about the difference between two testing frameworks and how they are different than one another, which browsers they support, and what features they provide.
  9. Run Playwright Tests on LambdaTest: Playwright testing with LambdaTest leverages test performance to the utmost. You can run multiple Playwright tests in Parallel with the LammbdaTest test cloud. Get a step-by-step guide to run your Playwright test on the LambdaTest platform.
  10. Playwright Python Tutorial: Playwright automation framework support all major languages such as Python, JavaScript, TypeScript, .NET and etc. However, there are various advantages to Python end-to-end testing with Playwright because of its versatile utility. Get the hang of Playwright python testing with this chapter.
  11. Playwright End To End Testing Tutorial: Get your hands on with Playwright end-to-end testing and learn to use some exciting features such as TraceViewer, Debugging, Networking, Component testing, Visual testing, and many more.
  12. Playwright Video Tutorial: Watch the video tutorials on Playwright testing from experts and get a consecutive in-depth explanation of Playwright automation testing.

Run Playwright Internal automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful