diff --git a/docs/src/api/class-locatorassertions.md b/docs/src/api/class-locatorassertions.md index 547e1c7f94..47a723c0ff 100644 --- a/docs/src/api/class-locatorassertions.md +++ b/docs/src/api/class-locatorassertions.md @@ -721,6 +721,99 @@ await Expect(locator).ToBeVisibleAsync(); ### option: LocatorAssertions.toBeVisible.timeout = %%-csharp-java-python-assertions-timeout-%% * since: v1.18 +## async method: LocatorAssertions.toContainClass +* since: v1.24 +* langs: + - alias-java: containsClass + +Ensures the [Locator] points to an element that contains the given CSS class (or multiple). +In contrast to [`method: LocatorAssertions.toHaveClass`] which requires that the [Locator] has exactly the provided classes, `toContainClass` verifies that the [Locator] has a subset (or all) of the given CSS classes. + +```html +
+``` + +```js +const locator = page.locator('#component'); +await expect(locator).toContainClass('bar baz'); // pass, both classes are on element +await expect(locator).toContainClass('ba'); // fail, element has no 'ba' class + +const itemLocator = page.locator('#component .item'); +await expect(itemLocator).toContainClass(['alice', 'bob']); // pass, first element has alice, second bob +await expect(itemLocator).toContainClass(['alice', 'bob carl']); // no carl class found on second item element +await expect(itemLocator).toContainClass(['alice', 'bob', 'foobar']); // we expect 3 elements with the item class, but there are only 2 +``` + +```java +Locator locator = page.locator("#component"); +assertThat(locator).containsClass("bar baz"); // pass, both classes are on element +assertThat(locator).containsClass("ba"); // fail, element has no 'ba' class + +Locator itemLocator = page.locator("#component .item"); +assertThat(itemLocator).toContainClass(new String[] {"alice", "bob"}); // pass, first element has alice, second bob +assertThat(itemLocator).toContainClass(new String[] {"alice", "bob carl"}); // no carl class found on second item element +assertThat(itemLocator).toContainClass(new String[] {"alice", "bob", "foobar"}); // we expect 3 elements with the item class, but there are only 2 +``` + +```python async +from playwright.async_api import expect + +locator = page.locator('#component') +expect(locator).to_contain_class('bar baz') # pass, both classes are on element +expect(locator).to_contain_class('ba') # fail, element has no 'ba' class + +item_locator = page.locator('#component .item') +expect(item_locator).to_contain_class(['alice', 'bob']) # pass, first element has alice, second bob +expect(item_locator).to_contain_class(['alice', 'bob carl']) # no carl class found on second item element +expect(item_locator).to_contain_class(['alice', 'bob', 'foobar']) # we expect 3 elements with the item class, but there are only 2 +``` + +```python sync +from playwright.sync_api import expect + +locator = page.locator('#component') +await expect(locator).to_contain_class('bar baz') # pass, both classes are on element +await expect(locator).to_contain_class('ba') # fail, element has no 'ba' class + +item_locator = page.locator('#component .item') +await expect(item_locator).to_contain_class(['alice', 'bob']) # pass, first element has alice, second bob +await expect(item_locator).to_contain_class(['alice', 'bob carl']) # no carl class found on second item element +await expect(item_locator).to_contain_class(['alice', 'bob', 'foobar']) # we expect 3 elements with the item class, but there are only 2 +``` + +```csharp +var locator = Page.Locator("#component"); +await Expect(locator).ToContainClassAsync("bar baz"); // pass, both classes are on element +await Expect(locator).ToContainClassAsync("ba"); // fail, element has no "ba" class + +var itemLocator = page.locator("#component .item"); +await Expect(itemLocator).ToContainClassAsync(new string[]{"alice", "bob"}); // pass, first element has alice, second bob +await Expect(itemLocator).ToContainClassAsync(new string[]{"alice", "bob carl"}); // no carl class found on second item element +await Expect(itemLocator).ToContainClassAsync(new string[]{"alice", "bob", "foobar"}); // we expect 3 elements with the item class, but there are only 2 +``` + +Note that locator must point to a single element when passing a string or to multiple elements when passing an array. + +### param: LocatorAssertions.toContainClass.expected +* since: v1.24 +- `expected` <[string]|[Array]<[string]>> + +Expected classnames, whitespace separated. When passing an array, the given classes must be present on the locator elements. + +### option: LocatorAssertions.toContainClass.ignoreCase +* since: v1.24 +- `ignoreCase` <[boolean]> + +Whether to perform case-insensitive match. + +### option: LocatorAssertions.toContainClass.timeout = %%-js-assertions-timeout-%% +* since: v1.24 +### option: LocatorAssertions.toContainClass.timeout = %%-csharp-java-python-assertions-timeout-%% +* since: v1.24 + ## async method: LocatorAssertions.toContainText * since: v1.20 * langs: @@ -883,15 +976,22 @@ Expected attribute value. * langs: - alias-java: hasClass -Ensures the [Locator] points to an element with given CSS class. +Ensures the [Locator] points to an element with given CSS classes. This needs to be a full match +or using a relaxed regular expression. For matching partial class names, use [`method: LocatorAssertions.toContainClass`]. + +```html + +``` ```js const locator = page.locator('#component'); await expect(locator).toHaveClass(/selected/); +await expect(locator).toHaveClass('selected row'); ``` ```java assertThat(page.locator("#component")).hasClass(Pattern.compile("selected")); +assertThat(page.locator("#component")).hasClass("selected row"); ``` ```python async @@ -899,6 +999,7 @@ from playwright.async_api import expect locator = page.locator("#component") await expect(locator).to_have_class(re.compile(r"selected")) +await expect(locator).to_have_class("selected row") ``` ```python sync @@ -906,11 +1007,13 @@ from playwright.sync_api import expect locator = page.locator("#component") expect(locator).to_have_class(re.compile(r"selected")) +expect(locator).to_have_class("selected row") ``` ```csharp var locator = Page.Locator("#component"); await Expect(locator).ToHaveClassAsync(new Regex("selected")); +await Expect(locator).ToHaveClassAsync("selected row"); ``` Note that if array is passed as an expected value, entire lists of elements can be asserted: diff --git a/packages/playwright-core/src/server/injected/injectedScript.ts b/packages/playwright-core/src/server/injected/injectedScript.ts index 5242981b1f..291bb4293b 100644 --- a/packages/playwright-core/src/server/injected/injectedScript.ts +++ b/packages/playwright-core/src/server/injected/injectedScript.ts @@ -79,7 +79,7 @@ export class InjectedScript { private _highlight: Highlight | undefined; readonly isUnderTest: boolean; - constructor(isUnderTest: boolean, stableRafCount: number, browserName: string, customEngines: { name: string, engine: SelectorEngine}[]) { + constructor(isUnderTest: boolean, stableRafCount: number, browserName: string, customEngines: { name: string, engine: SelectorEngine }[]) { this.isUnderTest = isUnderTest; this._evaluator = new SelectorEvaluatorImpl(new Map()); @@ -445,7 +445,7 @@ export class InjectedScript { element = element.closest('button, [role=button], [role=checkbox], [role=radio]') || element; if (behavior === 'follow-label') { if (!element.matches('input, textarea, button, select, [role=button], [role=checkbox], [role=radio]') && - !(element as any).isContentEditable) { + !(element as any).isContentEditable) { // Go up to the label that might be connected to the input/textarea. element = element.closest('label') || element; } @@ -1070,7 +1070,7 @@ export class InjectedScript { let received: string | undefined; if (expression === 'to.have.attribute') { received = element.getAttribute(options.expressionArg) || ''; - } else if (expression === 'to.have.class') { + } else if (expression === 'to.have.class' || expression === 'to.contain.class') { received = element.classList.toString(); } else if (expression === 'to.have.css') { received = window.getComputedStyle(element).getPropertyValue(options.expressionArg); @@ -1091,7 +1091,9 @@ export class InjectedScript { if (received !== undefined && options.expectedText) { const matcher = new ExpectedTextMatcher(options.expectedText[0]); - return { received, matches: matcher.matches(received) }; + return { received, matches: matcher.matches(received, { + toContainClass: expression === 'to.contain.class', + }) }; } } @@ -1111,7 +1113,7 @@ export class InjectedScript { let received: string[] | undefined; if (expression === 'to.have.text.array' || expression === 'to.contain.text.array') received = elements.map(e => options.useInnerText ? (e as HTMLElement).innerText : e.textContent || ''); - else if (expression === 'to.have.class.array') + else if (expression === 'to.have.class.array' || expression === 'to.contain.class.array') received = elements.map(e => e.classList.toString()); if (received && options.expectedText) { @@ -1125,7 +1127,9 @@ export class InjectedScript { const matchers = options.expectedText.map(e => new ExpectedTextMatcher(e)); let mIndex = 0, rIndex = 0; while (mIndex < matchers.length && rIndex < received.length) { - if (matchers[mIndex].matches(received[rIndex])) + if (matchers[mIndex].matches(received[rIndex], { + toContainClass: expression === 'to.contain.class.array', + })) ++mIndex; ++rIndex; } @@ -1151,11 +1155,11 @@ function oneLine(s: string): string { return s.replace(/\n/g, '↵').replace(/\t/g, '⇆'); } -const eventType = new Map