# Running Multiple Tests (Suites) on Windows

First, we need to create a new file called `oxygen.conf.js` inside our project folder

{% hint style="info" %}
for full configuration go to <https://docs.oxygenhq.org/advanced/project-configuration>
{% endhint %}

The file should look like this:

```
module.exports = {
    
  "iterations": 1,
  "parallel": 1,
    
  "url": "http://localhost:4444/wd/hub",
    
    suites: [{
        name: 'case1',
        cases: [{
            path: "./test-script.js"
        }],
      },
      {
        name: 'case2',
        cases: [{
            path: "./second-test-script.js"
        }],
    }],
    
  "environment": {
    "some_parameter": "foo",
    "another_parameter": "bar"
  },
    
  "capabilities": [
    { 
      "browserName": "chrome"
    }
  ],
    
  "options": {
    "autoReopen": true
  }
    
}
```

We can config the number of iterations, number of parallel browsers, and add test cases inside suites

And just like running a single test script, let's open the oxygen-cli folder inside node modules,&#x20;

open cmd and navigate to the following path:

```
cd C:\Users\YOUR-USER\AppData\Roaming\npm\node_modules\oxygen-cli
```

Now run the following command: `cls && node build\lib\cli`&#x20;

followed by the path to `oxygen.conf.js` file

```
cls && node build\lib\cli C:\Desktop\YourProject\oxygen.conf.js
```

{% hint style="info" %}
Before running the test, make sure Selenium is running either in oxygen or as a standalone
{% endhint %}

And that's it, once again a report will be generated inside your project folder


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.oxygenhq.org/download-installation-start/start-working-with-oxygen/introduction-and-usage/running-multiple-tests-suites.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
