Skip to content

Commit 2690314

Browse files
updated the masking docs and updated from '”' to '"'
1 parent 87bcea0 commit 2690314

File tree

88 files changed

+258
-258
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+258
-258
lines changed

docs/advanced-tunnel-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Key: 123456789abcdefghijklmnopqrstuv
118118
TunnelName: LambdaTest
119119
```
120120
121-
> **Note:** You will need to replace this file with your credentials and it has to be named exactly `.lt.yaml`. Once you specify the proxy information as environment variable, it gets auto detected.
121+
> **Note:** You will need to replace this file with your credentials and it has to be named exactly "`.lt.yaml`". Once you specify the proxy information as environment variable, it gets auto detected.
122122

123123
Similarly, you can go ahead and pass any other variables by just specifying them in the YAML file. For example, if you wish to have verbose variable passed on for detailed logs while the binary is being configured. You will add the verbose flag in your YAML file:
124124

docs/app-center-integration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ Before getting started with the setup, you would need access to the following:
8282

8383
***
8484

85-
2. Click on the User API Tokens to generate a token.
85+
2. Click on the "User API Tokens" to generate a token.
8686

8787
<img loading="lazy" src={require('../assets/images/app-center-integration/app-center02.webp').default} alt="cmd" className="doc_img"/>
8888

8989
***
9090

91-
3. Click on Add new API token to add the new token.
91+
3. Click on "Add new API token" to add the new token.
9292

9393
<img loading="lazy" src={require('../assets/images/app-center-integration/app-center03.webp').default} alt="cmd" className="doc_img"/>
9494

@@ -104,7 +104,7 @@ Before getting started with the setup, you would need access to the following:
104104

105105
---
106106

107-
1. Click on the Configure Button
107+
1. Click on the "Configure" Button
108108

109109
<img loading="lazy" src={require('../assets/images/app-center-integration/app-center05.webp').default} alt="cmd" className="doc_img"/>
110110

@@ -116,7 +116,7 @@ Before getting started with the setup, you would need access to the following:
116116

117117
***
118118

119-
3. Now Select your Builds on App Center by clicking on Select Builds to Select the Builds from App Center.
119+
3. Now Select your Builds on App Center by clicking on "Select Builds" to Select the "Builds" from App Center.
120120

121121
<img loading="lazy" src={require('../assets/images/app-center-integration/app-center07.webp').default} alt="cmd" className="doc_img"/>
122122

docs/appium-app-performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ LambdaTest provides you with two metrics in a time-series format representing th
5252

5353
1. **System CPU Usage (%)**: The total percentage of CPU being used by the entire system
5454

55-
2. **App CPU Usage (%)**: The share of System CPU usage being used by the AUT.
55+
2. **App CPU Usage (%)**: The share of "System CPU usage" being used by the AUT.
5656

5757
***
5858

docs/appium-appletv.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,13 +253,13 @@ if __name__ == "__main__":
253253
You can update your custom capabilities in test scripts. In this sample project, we are passing platform name, platform version, device name and app url (generated earlier) along with other capabilities like build name and test name via capabilities object. The capabilities object in the sample code are defined as:
254254

255255
**Supported Model:**
256-
- Device: `"Apple TV"` ; OS Version:`16"`
256+
- Device: `"Apple TV"` ; OS Version:`"16"`
257257

258258
**Supported Capabilities:**
259259
Same as iOS
260260

261261
**Platform:**
262-
`tvOS"`
262+
`"tvOS"`
263263

264264
```python title="appletv.py"
265265
def getCaps():

docs/appium-firetv.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,13 @@ if __name__ == "__main__":
231231
You can update your custom capabilities in test scripts. In this sample project, we are passing platform name, platform version, device name and app url (generated earlier) along with other capabilities like build name and test name via capabilities object. The capabilities object in the sample code are defined as:
232232

233233
**Supported Model:**
234-
- Device: `"Amazon Fire TV Stick"` ; OS Version:`7"`
234+
- Device: `"Amazon Fire TV Stick"` ; OS Version:`"7"`
235235

236236
**Supported Capabilities:**
237237
Same as Android.
238238

239239
**Platform:**
240-
`fireos"`
240+
`"fireos"`
241241

242242
```python title="firetv.py"
243243
def getCaps():

docs/appium-ios-app-settings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Currently, App Automate supports the following permission settings:
9090

9191
One important thing to remember while handling Permission Settings is that, we have to first take action on the **Permission Pop ups** from the app when they appear and then only those particular Permission Settings will be reflected in the app settings page. For example:
9292

93-
Let's say we pass Camera: “On“ in the lambda hook’s preferences even before handling Camera’s permission popup from the app, the Camera key would be missing on the app settings page which would result in failure. So we have to be sure that we have handled the permission pop ups before calling lambda hook.
93+
Let's say we pass Camera: "On" in the lambda hook’s preferences even before handling Camera’s permission popup from the app, the Camera key would be missing on the app settings page which would result in failure. So we have to be sure that we have handled the permission pop ups before calling lambda hook.
9494

9595
:::info
9696

@@ -122,7 +122,7 @@ Currently, App Automate supports the following custom settings:
122122

123123
Apart from Textfields and Sliders, for every other settings, we have to pass the Name of that particular setting as the **key-value pair**. For example:
124124

125-
- Reset App : “On“.
125+
- "Reset App" : "On".
126126

127127
For **textfields and sliders**, we pass the index of that particular textfield or slider starting from 1 when we traverse from top to bottom. For example:
128128

docs/appium-rokutv.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,14 +226,14 @@ if __name__ == "__main__":
226226
You can update your custom capabilities in test scripts. In this sample project, we are passing platform name, platform version, device name and app url (generated earlier) along with other capabilities like build name and test name via capabilities object. The capabilities object in the sample code are defined as:
227227

228228
**Supported Model:**
229-
- Device: `"Roku Ultra"` ; OS Version:`11"`
230-
- Device: `"Roku Express"` ; OS Version:`11"`
229+
- Device: `"Roku Ultra"` ; OS Version:`"11"`
230+
- Device: `"Roku Express"` ; OS Version:`"11"`
231231

232232
**Supported Capabilities:**
233233
Please check at the end of the doc.
234234

235235
**Platform:**
236-
`roku"`
236+
`"roku"`
237237

238238
```python title="main.py"
239239
caps = {

docs/appveyor-ci-integration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ To perform your tests with LambdaTest, you would need the below things to be alr
5959
6060
2. You also need your LambdaTest authentication credentials, which include your LambdaTest username, and access key.
6161

62-
> To get your Username and Access Key, go to your [LambdaTest automation dashboard](https://automation.lambdatest.com/) and click on the key icon left to the help button, on the top right corner. <img loading="lazy" src={require('../assets/images/uploads/profile-1.webp').default} alt="appveyor ci integration" width="462" height="325" className="doc_img"/>
62+
> To get your Username and Access Key, go to your [LambdaTest automation dashboard](https://automation.lambdatest.com/) and click on the "key" icon left to the help button, on the top right corner. <img loading="lazy" src={require('../assets/images/uploads/profile-1.webp').default} alt="appveyor ci integration" width="462" height="325" className="doc_img"/>
6363
6464
Update your username and access key in the "Config.properties" file.
6565

@@ -90,9 +90,9 @@ Below is the step-by-step execution of the AppVeyor CI pipeline.
9090
1. Make sure to add your LambdaTest's hub URL and [Desired Capabilities](/docs/selenium-automation-capabilities/) in your test setup, as done in the _AppveyorCI/src/main/java/stepDefinitions/ToDoStepDefinition.java_ file of the mentioned GitHub repository.
9191

9292
2. Push the changes to your integrated GitHub repository. For example, we have changed the test name in the forked repository.
93-
3. Once the edit is complete, click on Commit Changes to save and commit the changes made. AppVeyor CI is activated as soon as this step is done since we have used push event for triggering the AppVeyor CI. <img loading="lazy" src={require('../assets/images/uploads/appveyorCi-10-1024x417.webp').default} alt="appveyor ci integration" width="768" height="313" className="doc_img"/>
93+
3. Once the edit is complete, click on "Commit Changes" to save and commit the changes made. AppVeyor CI is activated as soon as this step is done since we have used "push event" for triggering the AppVeyor CI. <img loading="lazy" src={require('../assets/images/uploads/appveyorCi-10-1024x417.webp').default} alt="appveyor ci integration" width="768" height="313" className="doc_img"/>
9494

95-
4. As soon as the AppVeyor CI is triggered (through push event in this case), a new build can be seen in the Timeline on your [LambdaTest's automation dashboard](https://automation.lambdatest.com/timeline/). The current status of this build will be running or executing. <img loading="lazy" src={require('../assets/images/uploads/appveyorCi-11-1024x460.webp').default} alt="appveyor ci integration" width="768" height="345" className="doc_img"/>
95+
4. As soon as the AppVeyor CI is triggered (through push event in this case), a new build can be seen in the "Timeline" on your [LambdaTest's automation dashboard](https://automation.lambdatest.com/timeline/). The current status of this build will be "running" or "executing". <img loading="lazy" src={require('../assets/images/uploads/appveyorCi-11-1024x460.webp').default} alt="appveyor ci integration" width="768" height="345" className="doc_img"/>
9696

9797
5. Now based on the tests, this build can pass or fail. If passed, a green tick along with the term **Passed** will appear in the summary of the test. Else if failed, a red cross will appear instead, along with the term **Failed**, as shown below.<img loading="lazy" src={require('../assets/images/uploads/appveyorCi-12-1024x462.webp').default} alt="appveyor ci integration" width="768" height="347" className="doc_img"/>
9898

docs/automation-testing-using-jasmine-with-karma.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ customLaunchers: { chrome: {
186186
tunnel: true, // In case karma is running on local machine
187187
} }
188188
```
189-
> **Important Note**: Some Safari & IE browsers don’t support automatic resolution of the URL string localhost. Therefore if you test on URLs like "`http://localhost/`" or "`http://localhost:8080`" etc, you would get an error in these browsers. A possible solution is to use "`localhost.lambdatest.com`" or replace the string localhost with machine IP address. For example, if you wanted to test "`http://localhost/dashboard`" or, and your machine IP is 192.168.2.6 you can instead test on "`http://192.168.2.6/dashboard`" or "`http://localhost.lambdatest.com/dashboard`".
189+
> **Important Note**: Some Safari & IE browsers don’t support automatic resolution of the URL string "localhost". Therefore if you test on URLs like "`http://localhost/`" or "`http://localhost:8080`" etc, you would get an error in these browsers. A possible solution is to use "`localhost.lambdatest.com`" or replace the string "localhost" with machine IP address. For example, if you wanted to test "`http://localhost/dashboard`" or, and your machine IP is 192.168.2.6 you can instead test on "`http://192.168.2.6/dashboard`" or "`http://localhost.lambdatest.com/dashboard`".
190190
191191
## Avoid Timeouts With psuedoActivityInternal
192192
* * *

docs/aws-codepipeline-with-hyperexecute.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ phases:
111111
command: ./hyperexecute --user <your_user_name> --key <your_access_key> --config <your_yaml_file>
112112
```
113113

114-
- In the **buildspec** specification, choose the first option - **Use a buildspec file**.
114+
- In the **buildspec** specification, choose the first option - **"Use a buildspec file"**.
115115

116-
- Now Click the **continue to code pipeline** button and then click on **Next**.
116+
- Now Click the **"continue to code pipeline"** button and then click on **Next**.
117117

118-
- You can **Skip deploy stage** and finally click **Create Pipeline** button.
118+
- You can "**Skip deploy stage"** and finally click **"Create Pipeline"** button.
119119

120120
<img loading="lazy" src={require('../assets/images/hyperexecute/integration/ci-cd/aws/STEP4.webp').default} alt="Image" className="doc_img"/>
121121

0 commit comments

Comments
 (0)