You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using dots to signify class names is a simplified way of using ``*=`` within a CSS selector. That simplified version looks like this:
461
+
**ProTip™:** You can use dots to signify class names (Ex: ``div.class_name``) as a simplified version of ``div[class="class_name"]`` within a CSS selector.
462
+
463
+
You can also use ``*=`` to search for any partial value in a CSS selector as shown below:
462
464
463
465
```python
464
-
self.click('a[class*="my_class"]')
466
+
self.click('a[name*="partial_name"]')
465
467
```
466
468
467
-
**ProTip™:** You can use ``*=`` to search for any partial value in a CSS selector.
468
-
469
469
#### Asserting visibility of text inside an element on a page within some number of seconds:
0 commit comments