-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[py] Add support for relative locators
- Loading branch information
1 parent
55aaf10
commit bddd02a
Showing
6 changed files
with
136 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# Licensed to the Software Freedom Conservancy (SFC) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The SFC licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
import json | ||
import pkgutil | ||
|
||
from selenium.common.exceptions import WebDriverException | ||
|
||
|
||
def with_tag_name(tag_name): | ||
if tag_name is None: | ||
raise WebDriverException("tag_name can not be null") | ||
return RelativeBy({"css selector": tag_name}) | ||
|
||
class RelativeBy(object): | ||
|
||
def __init__(self, root = None, filters = []): | ||
self.root = root | ||
self.filters = filters | ||
|
||
def above(self, element_or_locator = None): | ||
if element_or_locator is None: | ||
raise WebDriverException("Element or locator must be given when calling above method") | ||
|
||
self.filters.append({"kind": "above", "args": [element_or_locator]}) | ||
return self | ||
|
||
def below(self, element_or_locator = None): | ||
if element_or_locator is None: | ||
raise WebDriverException("Element or locator must be given when calling above method") | ||
|
||
self.filters.append({"kind": "below", "args": [element_or_locator]}) | ||
return self | ||
|
||
def to_left_of(self, element_or_locator = None): | ||
if element_or_locator is None: | ||
raise WebDriverException("Element or locator must be given when calling above method") | ||
|
||
self.filters.append({"kind": "left", "args": [element_or_locator]}) | ||
return self | ||
|
||
def to_right_of(self, element_or_locator): | ||
if element_or_locator is None: | ||
raise WebDriverException("Element or locator must be given when calling above method") | ||
|
||
self.filters.append({"kind": "right", "args": [element_or_locator]}) | ||
return self | ||
|
||
def near(self, element_or_locator_distance = None): | ||
if element_or_locator is None: | ||
raise WebDriverException("Element or locator or distance must be given when calling above method") | ||
|
||
self.filters.append({"kind": "near", "args": [element_or_locator]}) | ||
return self | ||
|
||
def to_dict(self): | ||
return { | ||
'relative': { | ||
'root': self.root, | ||
'filters': self.filters | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Licensed to the Software Freedom Conservancy (SFC) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The SFC licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
import pytest | ||
|
||
from selenium.webdriver.common.by import By | ||
from selenium.webdriver.support.relative_locator import with_tag_name | ||
|
||
def test_should_be_able_to_find_elements_above_another(driver, pages): | ||
pages.load("relative_locators.html") | ||
lowest = driver.find_element(By.ID, "below") | ||
|
||
elements = driver.find_elements(with_tag_name("p").above(lowest)) | ||
|
||
ids = [el.get_attribute('id') for el in elements] | ||
assert "above" in ids | ||
assert "mid" in ids | ||
|
||
|
||
def test_should_be_able_to_combine_filters(driver, pages): | ||
pages.load("relative_locators.html") | ||
|
||
elements = driver.find_elements(with_tag_name("td").above(driver.find_element(By.ID, "center")) | ||
.to_right_of(driver.find_element(By.ID, "second"))) | ||
|
||
ids = [el.get_attribute('id') for el in elements] | ||
assert "third" in ids | ||
|