You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+93-28
Original file line number
Diff line number
Diff line change
@@ -17,15 +17,17 @@ For example, testing new versions of code being committed to a branch to ensure
17
17
-[Before each of the following examples, make sure to include the following](#before-each-of-the-following-examples-make-sure-to-include-the-following)
18
18
-[Creating a new AWS Device Farm Project](#creating-a-new-aws-device-farm-project)
19
19
-[Lookup an existing AWS Device Farm Project](#lookup-an-existing-aws-device-farm-project)
20
+
-[Generate a Test Grid URL for an existing AWS Device Farm Project](#generate-a-test-grid-url-for-an-existing-aws-device-farm-project)
20
21
-[Retrieve All artifacts](#retrieve-all-artifacts)
21
22
-[Retrieve VIDEO and LOG artifacts](#retrieve-video-and-log-artifacts)
22
23
-[Putting it all together with webdriver.io to execute the tests](#putting-it-all-together-with-webdriverio-to-execute-the-tests)
24
+
-[Putting it all together with Selenium to execute the tests](#putting-it-all-together-with-selenium-to-execute-the-tests)
23
25
-[Credentials](#credentials)
24
26
-[AWS Credentials](#aws-credentials)
25
27
-[Permissions](#permissions)
26
28
-[Running the action in `project` mode only](#running-the-action-in-project-mode-only)
29
+
-[Running the action in `gridurl` mode only](#running-the-action-in-gridurl-mode-only)
27
30
-[Running the action in `artifact` mode only](#running-the-action-in-artifact-mode-only)
28
-
-[Optional permissions](#optional-permissions)
29
31
-[License Summary](#license-summary)
30
32
-[Security Disclosures](#security-disclosures)
31
33
@@ -35,19 +37,24 @@ For example, testing new versions of code being committed to a branch to ensure
35
37
36
38
- mode: **REQUIRED** The mode to execute the action in. Valid values are `project`, when you require creation or looking up of an AWS Device Farm Project ARN, or `artifact`, when you require retrieval of artifacts from an existing AWS Device Farm Project ARN.
37
39
- project-arn: **REQUIRED** The name (or arn) of the Device Farm Project. In addition to supporting the value of an ARN of an existing Project, this field supports the use of a **name** as well. For example, if `"project-arn": "Test"` is supplied, the Action will perform a lookup in the AWS Account to find and retrieve the ARN of the AWS Device Farm Project with the name `Test`. If a **name** is supplied but not found a new Project with the supplied name will be created and the ARN of that newly created Project will be used.
40
+
- url-expires-seconds: **OPTIONAL** Lifetime, in seconds, of the Test Grid URL. Defaults to 900 if not specified.
38
41
- artifact-types: **OPTIONAL** A comma-delimited list of artifacts to be downloaded after the run completes. The valid values can be found [here](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-device-farm/Variable/TestGridSessionArtifactCategory/). No artifacts will be downloaded if this property is not supplied.
39
42
- artifact-folder: **OPTIONAL** The name of the folder where the artifacts are downloaded. Defaults to 'artifacts' if not specified.
40
43
41
44
## Output options
42
45
43
-
- project-arn: The ARN of the AWS Device Farm Project that was used.
46
+
- console-url: The AWS Console URL for the Test Grid Project
47
+
- project-arn: The ARN of the AWS Device Farm Browser Testing Project
48
+
- grid-url: The AWS Device Farm Test Grid URL (only available in gridurl mode)
49
+
- grid-url-expires: The Datetime that the supplied grid-url will expire formatted as YYYY-MM-DDThh:mm:ss.fffZ
44
50
45
51
## Examples of Usage
46
52
47
-
This action is designed to be used in two different ways.
53
+
This action is designed to be used in three different ways.
48
54
49
55
1. Create or lookup an AWS Device Farm Project ARN
50
-
2. Retrieve all the Artifacts for all sessions for a specific AWS Device Farm Project
56
+
2. Generate a Test Grid URL for a specified a AWS Device Farm Project
57
+
3. Retrieve all the Artifacts for all sessions for a specific AWS Device Farm Project
51
58
52
59
### Before each of the following examples, make sure to include the following
53
60
@@ -75,7 +82,7 @@ This action is designed to be used in two different ways.
If your GitHub workflow is using the same AWS IAM Role to execute this action and also to run your AWS Device Farm Tests you will the AWS IAM Role will need one further IAM permission. This permission is shown below to make it easier for users, this permission is _not_ required to execute this action itself.
310
+
### Running the action in `artifact` mode only
263
311
264
312
```json
265
313
{
@@ -268,9 +316,26 @@ If your GitHub workflow is using the same AWS IAM Role to execute this action an
0 commit comments