Upload zip file from filesystem
You need to upload the .zip
file of your .app directory containing your EarlGrey test cases to BrowserStack servers. Its easy to upload the .zip
file from your local filesystem or CI/CD server to BrowserStack using the REST API.
Here is an example cURL
request to upload an EarlGrey zip file :
curl -u "YOUR_USERNAME:YOUR_ACCESS_KEY" \
-X POST "https://api-cloud.browserstack.com/app-automate/earlgrey/app-dir"\
-F "file=@/path/to/app/file/appDir.zip"
A sample response to the above API request is shown below :
{
"test_url":"bs://j3c874f21852ba57957a3fdc33f47514288c4ba4"
}
Please note the value of test_url
in the API response (bs://j3c874f2185....
in the above example). This value will be used later to specify the appDir
for your EarlGrey test execution.
Note:
- Zip file upload will take a few seconds to about a minute depending on the size of your test-suite. Do not interrupt the
cURL
command until you get the response back. - We will delete the uploaded test-suite after 30 days from the date of upload.
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
Thank you for your valuable feedback!