Skip to main content

LocatorAssertions

The LocatorAssertions class provides assertion methods for RSpec like expect(locator).to have_text("Something"). Note that we have to explicitly include playwright/test and Playwright::Test::Matchers for using RSpec matchers.

require 'playwright/test'

describe 'your system testing' do
include Playwright::Test::Matchers

Since the matcher comes with auto-waiting feature, we don't have to describe trivial codes waiting for elements any more :)

page.content = <<~HTML
<div id="my_status" class="status">Pending</div>
<button onClick="setTimeout(() => { document.getElementById('my_status').innerText='Something Submitted!!' }, 2000)">Click me</button>
HTML

page.get_by_role("button").click
expect(page.locator(".status")).to have_text("Submitted") # auto-waiting

not_to_be_attached

expect(locator).not_to be_attached(attached: nil, timeout: nil)

The opposite of LocatorAssertions#to_be_attached.

not_to_be_checked

expect(locator).not_to be_checked(timeout: nil)

The opposite of LocatorAssertions#to_be_checked.

not_to_be_disabled

expect(locator).not_to be_disabled(timeout: nil)

The opposite of LocatorAssertions#to_be_disabled.

not_to_be_editable

expect(locator).not_to be_editable(editable: nil, timeout: nil)

The opposite of LocatorAssertions#to_be_editable.

not_to_be_empty

expect(locator).not_to be_empty(timeout: nil)

The opposite of LocatorAssertions#to_be_empty.

not_to_be_enabled

expect(locator).not_to be_enabled(enabled: nil, timeout: nil)

The opposite of LocatorAssertions#to_be_enabled.

not_to_be_focused

expect(locator).not_to be_focused(timeout: nil)

The opposite of LocatorAssertions#to_be_focused.

not_to_be_hidden

expect(locator).not_to be_hidden(timeout: nil)

The opposite of LocatorAssertions#to_be_hidden.

not_to_be_in_viewport

expect(locator).not_to be_in_viewport(ratio: nil, timeout: nil)

The opposite of LocatorAssertions#to_be_in_viewport.

not_to_be_visible

expect(locator).not_to be_visible(timeout: nil, visible: nil)

The opposite of LocatorAssertions#to_be_visible.

not_to_contain_text

expect(locator).not_to contain_text(expected, ignoreCase: nil, timeout: nil, useInnerText: nil)

The opposite of LocatorAssertions#to_contain_text.

not_to_have_attribute

expect(locator).not_to have_attribute(name, value, ignoreCase: nil, timeout: nil)

The opposite of LocatorAssertions#to_have_attribute.

not_to_have_class

expect(locator).not_to have_class(expected, timeout: nil)

The opposite of LocatorAssertions#to_have_class.

not_to_have_count

expect(locator).not_to have_count(count, timeout: nil)

The opposite of LocatorAssertions#to_have_count.

not_to_have_css

expect(locator).not_to have_css(name, value, timeout: nil)

The opposite of LocatorAssertions#to_have_css.

not_to_have_id

expect(locator).not_to have_id(id, timeout: nil)

The opposite of LocatorAssertions#to_have_id.

not_to_have_js_property

expect(locator).not_to have_js_property(name, value, timeout: nil)

The opposite of LocatorAssertions#to_have_js_property.

not_to_have_text

expect(locator).not_to have_text(expected, ignoreCase: nil, timeout: nil, useInnerText: nil)

The opposite of LocatorAssertions#to_have_text.

not_to_have_value

expect(locator).not_to have_value(value, timeout: nil)

The opposite of LocatorAssertions#to_have_value.

not_to_have_values

expect(locator).not_to have_values(values, timeout: nil)

The opposite of LocatorAssertions#to_have_values.

to_be_attached

expect(locator).to be_attached(attached: nil, timeout: nil)

Ensures that Locator points to an element that is connected to a Document or a ShadowRoot.

Usage

page.content = <<~HTML
<div id="hidden_status" style="display: none">Pending</div>
<button onClick="document.getElementById('hidden_status').innerText='Hidden text'">Click me</button>
HTML

page.get_by_role("button").click
expect(page.get_by_text("Hidden text")).to be_attached

to_be_checked

expect(locator).to be_checked(checked: nil, timeout: nil)

Ensures the Locator points to a checked input.

Usage

locator = page.get_by_label("Subscribe to newsletter")
expect(locator).to be_checked

to_be_disabled

expect(locator).to be_disabled(timeout: nil)

Ensures the Locator points to a disabled element. Element is disabled if it has "disabled" attribute or is disabled via 'aria-disabled'. Note that only native control elements such as HTML button, input, select, textarea, option, optgroup can be disabled by setting "disabled" attribute. "disabled" attribute on other elements is ignored by the browser.

Usage

locator = page.locator("button.submit")
locator.click
expect(locator).to be_disabled

to_be_editable

expect(locator).to be_editable(editable: nil, timeout: nil)

Ensures the Locator points to an editable element.

Usage

locator = page.get_by_role("textbox")
expect(locator).to be_editable

to_be_empty

expect(locator).to be_empty(timeout: nil)

Ensures the Locator points to an empty editable element or to a DOM node that has no text.

Usage

locator = page.locator("div.warning")
expect(locator).to be_empty

to_be_enabled

expect(locator).to be_enabled(enabled: nil, timeout: nil)

Ensures the Locator points to an enabled element.

Usage

locator = page.locator("button.submit")
expect(locator).to be_enabled

to_be_focused

expect(locator).to be_focused(timeout: nil)

Ensures the Locator points to a focused DOM node.

Usage

locator = page.get_by_role("textbox")
expect(locator).to be_focused

to_be_hidden

expect(locator).to be_hidden(timeout: nil)

Ensures that Locator either does not resolve to any DOM node, or resolves to a non-visible one.

Usage

locator = page.locator(".my-element")
expect(locator).to be_hidden

to_be_in_viewport

expect(locator).to be_in_viewport(ratio: nil, timeout: nil)

Ensures the Locator points to an element that intersects viewport, according to the intersection observer API.

Usage

locator = page.get_by_role("button")
# Make sure at least some part of element intersects viewport.
expect(locator).to be_in_viewport
# Make sure element is fully outside of viewport.
expect(locator).not_to be_in_viewport
# Make sure that at least half of the element intersects viewport.
expect(locator).to be_in_viewport(ratio: 0.5)

to_be_visible

expect(locator).to be_visible(timeout: nil, visible: nil)

Ensures that Locator points to an attached and visible DOM node.

To check that at least one element from the list is visible, use Locator#first.

Usage

# A specific element is visible.
expect(page.get_by_text("Welcome")).to be_visible

# At least one item in the list is visible.
expect(page.get_by_test_id("todo-item").first).to be_visible

# At least one of the two elements is visible, possibly both.
expect(
page.get_by_role('button', name: 'Sign in').or(page.get_by_role('button', name: 'Sign up')).first
).to be_visible

to_contain_text

expect(locator).to contain_text(expected, ignoreCase: nil, timeout: nil, useInnerText: nil)

Ensures the Locator points to an element that contains the given text. All nested elements will be considered when computing the text content of the element. You can use regular expressions for the value as well.

Details

When expected parameter is a string, Playwright will normalize whitespaces and line breaks both in the actual text and in the expected string before matching. When regular expression is used, the actual text is matched as is.

Usage

locator = page.locator('.title')
expect(locator).to contain_text("substring")
expect(locator).to contain_text(/\d messages/)

If you pass an array as an expected value, the expectations are:

  1. Locator resolves to a list of elements.
  2. Elements from a subset of this list contain text from the expected array, respectively.
  3. The matching subset of elements has the same order as the expected array.
  4. Each text value from the expected array is matched by some element from the list.

For example, consider the following list:

<ul>
<li>Item Text 1</li>
<li>Item Text 2</li>
<li>Item Text 3</li>
</ul>

Let's see how we can use the assertion:

# ✓ Contains the right items in the right order
expect(page.locator("ul > li")).to contain_text(["Text 1", "Text 3", "Text 4"])

# ✖ Wrong order
expect(page.locator("ul > li")).to contain_text(["Text 3", "Text 2"])

# ✖ No item contains this text
expect(page.locator("ul > li")).to contain_text(["Some 33"])

# ✖ Locator points to the outer list element, not to the list items
expect(page.locator("ul")).to contain_text(["Text 3"])

to_have_attribute

expect(locator).to have_attribute(name, value, ignoreCase: nil, timeout: nil)

Ensures the Locator points to an element with given attribute.

Usage

locator = page.locator("input")
expect(locator).to have_attribute("type", "text")

to_have_class

expect(locator).to have_class(expected, timeout: nil)

Ensures the Locator points to an element with given CSS classes. This needs to be a full match or using a relaxed regular expression.

Usage

<div class='selected row' id='component'></div>
locator = page.locator("#component")
expect(locator).to have_class(/selected/)
expect(locator).to have_class("selected row")

Note that if array is passed as an expected value, entire lists of elements can be asserted:

locator = page.locator("list > .component")
expect(locator).to have_class(["component", "component selected", "component"])

to_have_count

expect(locator).to have_count(count, timeout: nil)

Ensures the Locator resolves to an exact number of DOM nodes.

Usage

locator = page.locator("list > .component")
expect(locator).to have_count(3)

to_have_css

expect(locator).to have_css(name, value, timeout: nil)

Ensures the Locator resolves to an element with the given computed CSS style.

Usage

locator = page.get_by_role("button")
expect(locator).to have_css("display", "flex")

to_have_id

expect(locator).to have_id(id, timeout: nil)

Ensures the Locator points to an element with the given DOM Node ID.

Usage

locator = page.get_by_role("textbox")
expect(locator).to have_id("lastname")

to_have_js_property

expect(locator).to have_js_property(name, value, timeout: nil)

Ensures the Locator points to an element with given JavaScript property. Note that this property can be of a primitive type as well as a plain serializable JavaScript object.

Usage

locator = page.locator(".component")
expect(locator).to have_js_property("loaded", true)

to_have_text

expect(locator).to have_text(expected, ignoreCase: nil, timeout: nil, useInnerText: nil)

Ensures the Locator points to an element with the given text. All nested elements will be considered when computing the text content of the element. You can use regular expressions for the value as well.

Details

When expected parameter is a string, Playwright will normalize whitespaces and line breaks both in the actual text and in the expected string before matching. When regular expression is used, the actual text is matched as is.

Usage

locator = page.locator(".title")
expect(locator).to have_text(/Welcome, Test User/)
expect(locator).to have_text(/Welcome, .*/)

If you pass an array as an expected value, the expectations are:

  1. Locator resolves to a list of elements.
  2. The number of elements equals the number of expected values in the array.
  3. Elements from the list have text matching expected array values, one by one, in order.

For example, consider the following list:

<ul>
<li>Text 1</li>
<li>Text 2</li>
<li>Text 3</li>
</ul>

Let's see how we can use the assertion:

# ✓ Has the right items in the right order
expect(page.locator("ul > li")).to have_text(["Text 1", "Text 2", "Text 3"])

# ✖ Wrong order
expect(page.locator("ul > li")).to have_text(["Text 3", "Text 2", "Text 1"])

# ✖ Last item does not match
expect(page.locator("ul > li")).to have_text(["Text 1", "Text 2", "Text"])

# ✖ Locator points to the outer list element, not to the list items
expect(page.locator("ul")).to have_text(["Text 1", "Text 2", "Text 3"])

to_have_value

expect(locator).to have_value(value, timeout: nil)

Ensures the Locator points to an element with the given input value. You can use regular expressions for the value as well.

Usage

locator = page.locator("input[type=number]")
expect(locator).to have_value(/^[0-9]$/)

to_have_values

expect(locator).to have_values(values, timeout: nil)

Ensures the Locator points to multi-select/combobox (i.e. a select with the multiple attribute) and the specified values are selected.

Usage

For example, given the following element:

<select id="favorite-colors" multiple>
<option value="R">Red</option>
<option value="G">Green</option>
<option value="B">Blue</option>
</select>
locator = page.locator("id=favorite-colors")
locator.select_option(["R", "G"])
expect(locator).to have_values([/R/, /G/])