Qucs-S S-parameter Viewer & RF Synthesis Tools
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
playwright._impl._assertions.LocatorAssertions Class Reference
Inheritance diagram for playwright._impl._assertions.LocatorAssertions:
Inheritance graph
[legend]
Collaboration diagram for playwright._impl._assertions.LocatorAssertions:
Collaboration graph
[legend]

Public Member Functions

None __init__ (self, Locator locator, float timeout=None, bool is_not=False, Optional[str] message=None)
 
None to_contain_text (self, Union[Sequence[str], Sequence[Pattern[str]], Sequence[Union[Pattern[str], str]], Pattern[str], str,] expected, bool useInnerText=None, float timeout=None, bool ignoreCase=None)
 
None not_to_contain_text (self, Union[Sequence[str], Sequence[Pattern[str]], Sequence[Union[Pattern[str], str]], Pattern[str], str,] expected, bool useInnerText=None, float timeout=None, bool ignoreCase=None)
 
None to_have_attribute (self, str name, Union[str, Pattern[str]] value, bool ignoreCase=None, float timeout=None)
 
None not_to_have_attribute (self, str name, Union[str, Pattern[str]] value, bool ignoreCase=None, float timeout=None)
 
None to_have_class (self, Union[Sequence[str], Sequence[Pattern[str]], Sequence[Union[Pattern[str], str]], Pattern[str], str,] expected, float timeout=None)
 
None not_to_have_class (self, Union[Sequence[str], Sequence[Pattern[str]], Sequence[Union[Pattern[str], str]], Pattern[str], str,] expected, float timeout=None)
 
None to_contain_class (self, Union[Sequence[str], str,] expected, float timeout=None)
 
None not_to_contain_class (self, Union[Sequence[str], str,] expected, float timeout=None)
 
None to_have_count (self, int count, float timeout=None)
 
None not_to_have_count (self, int count, float timeout=None)
 
None to_have_css (self, str name, Union[str, Pattern[str]] value, float timeout=None)
 
None not_to_have_css (self, str name, Union[str, Pattern[str]] value, float timeout=None)
 
None to_have_id (self, Union[str, Pattern[str]] id, float timeout=None)
 
None not_to_have_id (self, Union[str, Pattern[str]] id, float timeout=None)
 
None to_have_js_property (self, str name, Any value, float timeout=None)
 
None not_to_have_js_property (self, str name, Any value, float timeout=None)
 
None to_have_value (self, Union[str, Pattern[str]] value, float timeout=None)
 
None not_to_have_value (self, Union[str, Pattern[str]] value, float timeout=None)
 
None to_have_values (self, Union[Sequence[str], Sequence[Pattern[str]], Sequence[Union[Pattern[str], str]]] values, float timeout=None)
 
None not_to_have_values (self, Union[Sequence[str], Sequence[Pattern[str]], Sequence[Union[Pattern[str], str]]] values, float timeout=None)
 
None to_have_text (self, Union[Sequence[str], Sequence[Pattern[str]], Sequence[Union[Pattern[str], str]], Pattern[str], str,] expected, bool useInnerText=None, float timeout=None, bool ignoreCase=None)
 
None not_to_have_text (self, Union[Sequence[str], Sequence[Pattern[str]], Sequence[Union[Pattern[str], str]], Pattern[str], str,] expected, bool useInnerText=None, float timeout=None, bool ignoreCase=None)
 
None to_be_attached (self, bool attached=None, float timeout=None)
 
None to_be_checked (self, float timeout=None, bool checked=None, bool indeterminate=None)
 
None not_to_be_attached (self, bool attached=None, float timeout=None)
 
None not_to_be_checked (self, float timeout=None)
 
None to_be_disabled (self, float timeout=None)
 
None not_to_be_disabled (self, float timeout=None)
 
None to_be_editable (self, bool editable=None, float timeout=None)
 
None not_to_be_editable (self, bool editable=None, float timeout=None)
 
None to_be_empty (self, float timeout=None)
 
None not_to_be_empty (self, float timeout=None)
 
None to_be_enabled (self, bool enabled=None, float timeout=None)
 
None not_to_be_enabled (self, bool enabled=None, float timeout=None)
 
None to_be_hidden (self, float timeout=None)
 
None not_to_be_hidden (self, float timeout=None)
 
None to_be_visible (self, bool visible=None, float timeout=None)
 
None not_to_be_visible (self, bool visible=None, float timeout=None)
 
None to_be_focused (self, float timeout=None)
 
None not_to_be_focused (self, float timeout=None)
 
None to_be_in_viewport (self, float ratio=None, float timeout=None)
 
None not_to_be_in_viewport (self, float ratio=None, float timeout=None)
 
None to_have_accessible_description (self, Union[str, Pattern[str]] description, bool ignoreCase=None, float timeout=None)
 
None not_to_have_accessible_description (self, Union[str, Pattern[str]] name, bool ignoreCase=None, float timeout=None)
 
None to_have_accessible_name (self, Union[str, Pattern[str]] name, bool ignoreCase=None, float timeout=None)
 
None not_to_have_accessible_name (self, Union[str, Pattern[str]] name, bool ignoreCase=None, float timeout=None)
 
None to_have_role (self, AriaRole role, float timeout=None)
 
None to_have_accessible_error_message (self, Union[str, Pattern[str]] errorMessage, bool ignoreCase=None, float timeout=None)
 
None not_to_have_accessible_error_message (self, Union[str, Pattern[str]] errorMessage, bool ignoreCase=None, float timeout=None)
 
None not_to_have_role (self, AriaRole role, float timeout=None)
 
None to_match_aria_snapshot (self, str expected, float timeout=None)
 
None not_to_match_aria_snapshot (self, str expected, float timeout=None)
 

Protected Member Functions

FrameExpectResult _call_expect (self, str expression, FrameExpectOptions expect_options, Optional[str] title)
 
"LocatorAssertions" _not (self)
 
- Protected Member Functions inherited from playwright._impl._assertions.AssertionsBase
None _expect_impl (self, str expression, FrameExpectOptions expect_options, Any expected, str message, str title=None)
 

Protected Attributes

 _actual_locator
 
 _timeout
 
 _is_not
 
- Protected Attributes inherited from playwright._impl._assertions.AssertionsBase
 _actual_locator
 
 _loop
 
 _dispatcher_fiber
 
 _timeout
 
 _is_not
 
 _custom_message
 

Constructor & Destructor Documentation

◆ __init__()

None playwright._impl._assertions.LocatorAssertions.__init__ (   self,
Locator  locator,
float   timeout = None,
bool   is_not = False,
Optional[str]   message = None 
)

Member Function Documentation

◆ _call_expect()

FrameExpectResult playwright._impl._assertions.LocatorAssertions._call_expect (   self,
str  expression,
FrameExpectOptions  expect_options,
Optional[str]   title 
)
protected

The documentation for this class was generated from the following file: