-
Open the CircleCI Dashboard, "All Pipelines" section.
-
In the filter section...
- Select the Project = "online-editor-e2e".
- Select the Branch (e.g. "main").
-
Click "Trigger Pipeline" button above.
-
In the "Add Parameters" section...
-
(Required) Add
boolean
parameterfire
with valuetrue
. -
(Optional) Add another parameter(s), e.g.:
Type Name Value Description string env dev
(orstage
)To run tests on the corresponding environment. string maven-test internal name of the test class/test method To run a specific test(s), e.g. CodeViewTest
.integer junit-parallelism 2
(3
,4
, etc)For a number of threads, to run tests in parallel. string add-params comma-separated list of -Dkey=value
Additional parameters for the Maven run,
e.g.-Dselenide.browser=firefox, -Dselenide.browserVersion=123.0, -Dselenide.timeout=8000
.
Note: the job with only default
fire = true
parameter will run all the tests on the default DEV environment. See.circleci/config.yml
for more details. -
-
Click "Trigger Pipeline" button in the modal window.
-
Wait for the pipeline to finish, and open the "run-e2e" job.
-
Check the failed tests list (if any) in the "Tests" tab.
-
Check the Allure Report in the "Artifacts" tab (open the one with
target/site/allure-maven-plugin/index.html
link)