Method: Playwright::Page#text_content

Defined in:
lib/playwright_api/page.rb

#text_content(selector, strict: nil, timeout: nil) ⇒ Object

Returns element.textContent.



1066
1067
1068
# File 'lib/playwright_api/page.rb', line 1066

def text_content(selector, strict: nil, timeout: nil)
  wrap_impl(@impl.text_content(unwrap_impl(selector), strict: unwrap_impl(strict), timeout: unwrap_impl(timeout)))
end