Skip to content

Commit

Permalink
fix: set focus before setting value
Browse files Browse the repository at this point in the history
  • Loading branch information
adeprez committed Oct 5, 2024
1 parent f3b2d87 commit 0aa6d2c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ def set_value(self, value: str):
except NoSuchElementException:
select.select_by_visible_text(value)
else:
self.click()
(
ActionChains(self.driver)
.key_down(Keys.CONTROL)
Expand Down

0 comments on commit 0aa6d2c

Please sign in to comment.