Skip to content

Commit

Permalink
Document partial link strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
ombre42 committed Sep 26, 2014
1 parent 6702713 commit d3427e9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,5 +1,6 @@
.project
.pydevproject
.idea
test/results
*.pyc
*.orig
Expand Down
6 changes: 5 additions & 1 deletion CHANGES.rst
Expand Up @@ -10,10 +10,14 @@ Release Notes
did not complete.
[Mika Batsman][elizaleong][emanlove]

- Added support for negative indicies for rows and columns in table-related
- Added support for negative indices for rows and columns in table-related
keywords.
[eweitz]

- Added strategy for locating elements by partial link text with locator
prefix 'partial link'.
[lina1]

1.5
---
- Copy Desired Capabilities before modifying to prevent affecting future
Expand Down
1 change: 1 addition & 0 deletions src/Selenium2Library/__init__.py
Expand Up @@ -55,6 +55,7 @@ class Selenium2Library(
| xpath | Click Element `|` xpath=//div[@id='my_element'] | Matches with arbitrary XPath expression |
| dom | Click Element `|` dom=document.images[56] | Matches with arbitrary DOM express |
| link | Click Element `|` link=My Link | Matches anchor elements by their link text |
| partial link | Click Element `|` partial link=y Lin | Matches anchor elements by their partial link text |
| css | Click Element `|` css=div.my_class | Matches by CSS selector |
| jquery | Click Element `|` jquery=div.my_class | Matches by jQuery/sizzle selector |
| sizzle | Click Element `|` sizzle=div.my_class | Matches by jQuery/sizzle selector |
Expand Down

0 comments on commit d3427e9

Please sign in to comment.