Is there a possible way to run two .xml files in testng.xml parallel?

后端 未结 3 1566
野性不改
野性不改 2020-12-10 22:09

I currently have two different TestSuites (SUITE1.XML and SUITE2.xml) with different configurations (e.g browsers, Os)...

I call both SUITES inside testng.xml to run

3条回答
  •  無奈伤痛
    2020-12-10 22:56

    Yes, you can do this by using "suitethreadpoolsize" attribute of testng

    
        
        
    
    

    Refer the testng's official website for more details http://testng.org/doc/documentation-main.html#parallel-running

    Thanks!

提交回复
热议问题