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
How can I select an item from a QComboBox? The Select from Selenium doesn't work.
Select
from selenium import webdriver from selenium.webdriver.support.select import Select driver = webdriver.Remote(...) myComboBox = driver.find_elements_by_xpath("//QComboBox[@id='aComboBox']")[0] select = Select(privLevelCBox) UnexpectedTagNameException: Message: Select only works on <select> elements, not on <QComboBox>
The text was updated successfully, but these errors were encountered:
myComboBox.send_keys("label") is the solution...
myComboBox.send_keys("label")
Sorry, something went wrong.
No branches or pull requests
How can I select an item from a QComboBox? The
Select
from Selenium doesn't work.The text was updated successfully, but these errors were encountered: