Skip to content

Commit 23df0b9

Browse files
committed
Merge pull request #2372 from RushilK7/stage
SmartUI Doc fixes
1 parent 7b9dd7a commit 23df0b9

Some content is hidden

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

43 files changed

+415
-354
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@
1717

1818
npm-debug.log*
1919
yarn-debug.log*
20-
yarn-error.log*
20+
yarn-error.log*
21+
pnpm-lock.yaml
9.16 KB
Loading
-3.53 KB
Loading
6.5 KB
Loading
-57.9 KB
Loading
48.7 KB
Loading
75.9 KB
Loading
26.2 KB
Loading
-62.6 KB
Loading

docs/html-dom-smartui-options.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The following are the different options which are currently supported:
6868
<Tabs className="docs__val" groupId="framework">
6969
<TabItem value="IgnoreID" label="Ignore ID" default>
7070

71-
```js title="This is a sample for your webhook configuration for Javascript to ignore by ID"
71+
```js title="This is a sample for your webhook configuration for JavaScript to ignore by ID"
7272
let config = {
7373
screenshotName: "Ignore-ID",
7474
fullPage: false, //You can make this property as true in case of Chrome browser
@@ -82,7 +82,7 @@ await driver.executeScript("smartui.takeScreenshot", config);
8282
</TabItem>
8383
<TabItem value="IgoreClass" label="Ignore Class">
8484

85-
```js title="This is a sample for your webhook configuration for Javascript to ignore by Class"
85+
```js title="This is a sample for your webhook configuration for JavaScript to ignore by Class"
8686
let config = {
8787
screenshotName: "Ignore-Class",
8888
fullPage: false, //You can make this property as true in case of Chrome browser
@@ -96,7 +96,7 @@ await driver.executeScript("smartui.takeScreenshot", config);
9696
</TabItem>
9797
<TabItem value="IgnoreXPath" label="Ignore XPath">
9898

99-
```js title="This is a sample for your webhook configuration for Javascript to ignore by XPath"
99+
```js title="This is a sample for your webhook configuration for JavaScript to ignore by XPath"
100100
let config = {
101101
screenshotName: "Ignore-XPath",
102102
fullPage: false, //You can make this property as true in case of Chrome browser
@@ -111,7 +111,7 @@ await driver.executeScript("smartui.takeScreenshot", config);
111111

112112
<TabItem value="IgnoreSelector" label="Ignore CSS Selector">
113113

114-
```js title="This is a sample for your webhook configuration for Javascript to ignore by CSS Selector"
114+
```js title="This is a sample for your webhook configuration for JavaScript to ignore by CSS Selector"
115115
let config = {
116116
screenshotName: "Ignore-cssSelector",
117117
fullPage: false, //You can make this property as true in case of Chrome browser
@@ -128,7 +128,7 @@ await driver.executeScript("smartui.takeScreenshot", config);
128128
<Tabs className="docs__val" groupId="framework">
129129
<TabItem value="SelectID" label="Select ID" default>
130130

131-
```js title="This is a sample for your webhook configuration for Javascript to select by ID."
131+
```js title="This is a sample for your webhook configuration for JavaScript to select by ID."
132132
let config = {
133133
screenshotName: "Select-ID",
134134
fullPage: false, //You can make this property as true in case of Chrome browser
@@ -142,7 +142,7 @@ await driver.executeScript("smartui.takeScreenshot", config);
142142
</TabItem>
143143
<TabItem value="SelectClass" label="Select Class">
144144

145-
```js title="This is a sample for your webhook configuration for Javascript to select by Class"
145+
```js title="This is a sample for your webhook configuration for JavaScript to select by Class"
146146
let config = {
147147
screenshotName: "Select-Class",
148148
fullPage: false, //You can make this property as true in case of Chrome browser
@@ -156,7 +156,7 @@ await driver.executeScript("smartui.takeScreenshot", config);
156156
</TabItem>
157157
<TabItem value="SelectXPath" label="Select XPath">
158158

159-
```js title="This is a sample for your webhook configuration for Javascript to select by XPath"
159+
```js title="This is a sample for your webhook configuration for JavaScript to select by XPath"
160160
let config = {
161161
screenshotName: "Select-XPath",
162162
fullPage: false, //You can make this property as true in case of Chrome browser
@@ -171,7 +171,7 @@ await driver.executeScript("smartui.takeScreenshot", config);
171171

172172
<TabItem value="SelectSelector" label="Select CSS Selector">
173173

174-
```js title="This is a sample for your webhook configuration for Javascript to select by CSS Selector"
174+
```js title="This is a sample for your webhook configuration for JavaScript to select by CSS Selector"
175175
let config = {
176176
screenshotName: "Select-cssSelector",
177177
fullPage: false, //You can make this property as true in case of Chrome browser

0 commit comments

Comments
 (0)