我有一个关于pytest的问题

我想用多个线程运行相同的pytest脚本。
但是,我不确定如何创建和运行传递多个参数的线程。 (并使用pytest运行线程。)

例如我有
test_web.py

from selenium import webdriver
import pytest


class SAMPLETEST:
    self.browser = webdriver.Chrome()
    self.browser.get(URL)
    self.browser.maximize_window()


    def test_title(self):
        assert "Project WEB" in self.browser.title


    def test_login(self):
        print('Testing Login')

        ID_BOX =  self.broswer.find_element_by_id("ProjectemployeeId")
        PW_BOX = self.broswer.find_element_by_id("projectpassword")
        ID_BOX.send_keys(self.ID) # this place for ID. This param come from thread_run.py
        PW_BOX.send_keys(self.PW) # this place for PW. It is not working. I am not sure how to get this data from threa_run.py
        PW_BOX.submit()

在thread_run.py中
import threading
import time
from test_web import SAMPLETEST

ID_List = ["0","1","2","3","4","5","6","7"]
PW_LIST = ["0","1","2","3","4","5","6","7"]



threads = []
print("1: Create thread")

for I in range(8):
    print("Append thread" + str(I))
    t = threading.Thread(target=SAMPLETEST, args=(ID_List[I], PW_LIST[I]))
    threads.append(t)


for I in range(8):
    print("Start thread:" + str(I))
    threads[I].start()

我能够在没有pytest的情况下运行线程来运行许多SAMPLETEST类。

但是,它不能与pytest一起使用。

我的问题是。

首先,如何在SAMPLETEST的insde中初始化self.brower?我确定以下代码将无法正常工作
self.browser = webdriver.Chrome()
    self.browser.get(URL)
    self.browser.maximize_window()

其次,在thread_run.py中,当我运行线程以在test_web.py上调用SAMPLTEST时,如何传递两个参数(ID和密码)?

ID_BOX.send_keys(self.ID)#这个ID的地方。该参数来自thread_run.py
ID_BOX.send_keys(self.ID)

            PW_BOX.send_keys(self.PW)

我试图在SAMPLETEST类中构建构造函数( init ),但是它没有用...

我不太确定如何使用pytest运行线程(传递参数或参数的线程)。

最佳答案

我可以从中读取2种情况:

  • 准备测试数据并将参数传递给您的测试方法,这可以通过pytest-generate-tests和参数化概念来实现。您可以引用文档here
  • 如果在多线程中运行pytest-Pytest-xdistpytest-parallel
  • 关于python-3.x - [pytest]使用线程运行pytest,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54155066/

    10-16 12:57