We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pyleniumio/driver.py:
line 363 is currently: elements = self.webdriver.find_element(by, css) should be: elements = self.webdriver.find_elements(by, css)
elements = self.webdriver.find_element(by, css)
elements = self.webdriver.find_elements(by, css)
The text was updated successfully, but these errors were encountered:
Good catch! This will be fixed in the next release
Sorry, something went wrong.
@darylkell This is now fixed in v1.12.6
v1.12.6
https://pypi.org/project/pyleniumio/
No branches or pull requests
pyleniumio/driver.py:
line 363 is currently:
elements = self.webdriver.find_element(by, css)
should be:
elements = self.webdriver.find_elements(by, css)
The text was updated successfully, but these errors were encountered: