Skip to content

Commit 056f41e

Browse files
[py] Correct flake8 warnings
1 parent 14c7667 commit 056f41e

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

‎py/selenium/webdriver/common/actions/wheel_actions.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
from . import interaction
1817
from .wheel_input import WheelInput
1918
from .interaction import Interaction
20-
from selenium.webdriver.remote.webelement import WebElement
2119

2220

2321
class WheelActions(Interaction):

‎py/selenium/webdriver/common/actions/wheel_input.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from . import interaction
1818
from .input_device import InputDevice
1919

20-
from selenium.common.exceptions import InvalidArgumentException
2120
from selenium.webdriver.remote.webelement import WebElement
2221

2322

‎py/test/selenium/webdriver/common/interactions_tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,6 @@ def test_can_scroll_mouse_wheel(driver, pages):
266266

267267
scrollable = driver.find_element(By.CSS_SELECTOR, "#scrollable")
268268
ActionChains(driver).scroll(0, 0, 5, 10, origin=scrollable).perform()
269-
#wheel_chain.scroll(0, 0, 5, 10, origin=scrollable).perform()
270269
events = _get_events(driver)
271270
assert len(events) == 1
272271
assert events[0]["type"] == "wheel"

0 commit comments

Comments
 (0)