组合框-Selenium WebDriver + Python

时间:2018-11-28 09:52:39

标签: python selenium webdriver

我对组合框有疑问。我需要选择一个项目并添加一些内容(或只在组合框中写一个整体)。我正在尝试这样做:

WebDriverWait(self.browser, 15).until(expected_conditions.element_to_be_clickable((By.CLASS_NAME, 'class')))
combobox = self.browser.find_element_by_class_name('class')
combobox.click()
time.sleep(3)
combobox.send_keys('mytextincombobox')

在最后一行,我有一个错误:

selenium.common.exceptions.WebDriverException: Message: unknown error: cannot focus element

如何更改代码?我不能使用Select,因为它不在网络中。感谢您的帮助!

0 个答案:

没有答案