python - EC 无法使用另一个文件中的定位器

标签 python selenium expected-condition

我正在尝试将定位器与页面对象类分开。它与 driver.find_element 完美配合。但如果我尝试将它与 EC 一起使用,例如 self.wait.until(EC.visibility_of_element_located(*OrderLocators.file_upload_in_process))

我收到此错误

File "C:\FilePath\ClabtFirstForm.py", line 95, in wait_for_file_upload
    wait.until(EC.visibility_of_element_located(*OrderLocators.file_upload_in_process))
TypeError: __init__() takes 2 positional arguments but 3 were given

我的测试方法

def test_files_regular(self):
    project_path = get_project_path()
    file = project_path + "\Data\Media\doc_15mb.doc"
    self.order.button_upload_files()
    self.order.button_select_files(file)
    self.order.wait_for_file_upload()

页面对象类

class CreateOrder(object):

def __init__(self, driver):
    self.driver = driver
    self.wait = WebDriverWait(driver, 25)

def button_upload_files(self):
    self.driver.find_element(*OrderLocators.button_upload_files).click()

def button_select_files(self, file):
    self.driver.find_element(*OrderLocators.button_select_files).send_keys(file)

def wait_for_file_upload(self):
    self.wait.until(EC.visibility_of_element_located(*OrderLocators.file_upload_in_process))
    self.wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR, "[ng-show='item.isSuccess']")))

定位器

class OrderLocators(object):

    button_upload_files = (By.CLASS_NAME, 'file-upload-label')
    button_select_files = (By.CLASS_NAME, 'input-file')
    file_upload_in_process = (By.CSS_SELECTOR, "[ng-show='item.isUploading']")

最佳答案

当您使用 * 将参数传递给 visibility_of_element_ located() 时,您实际上是在传递扩展的可迭代 OrderLocators.file_upload_in_process。也就是说,这个调用:

visibility_of_element_located(*OrderLocators.file_upload_in_process)

,等同于:

visibility_of_element_located(By.CLASS_NAME, 'input-file')

请注意第二行中如何使用两个参数实际调用该方法。

同时,这个条件的constructor expects only a single argument - 两个元素的元组/列表;因此异常(exception)。

修复 - 将其期望的内容(元组本身)传递给它,而不扩展它:

visibility_of_element_located(OrderLocators.file_upload_in_process)

关于python - EC 无法使用另一个文件中的定位器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54199833/

相关文章:

java - xpath 在 selenium 中不工作

java - 如何最好地使用 ExpectedConditions.or 和可变数量的条件

java - 元素在某处不可点击,因为另一个元素遮住了它

python - WebDriverWait 未按预期工作

python - 如何使用 Pandas 在 x 轴上绘制列并使用索引作为 y 轴?

Python - 将整数字符串转换为 Ascii

firefox - linux 操作系统中缺少 selenium ide 菜单栏

python - "import this, that, other, stuff"在做什么?

python - Django ORM - 动态添加 When to Case

如果等于 Excel 中的行长度,Python 将中断 for 循环