Skip to content

Commit ce93c11

Browse files
committed
Fixed Issues
1 parent e042eaf commit ce93c11

File tree

146 files changed

+44955
-43374
lines changed

Some content is hidden

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

146 files changed

+44955
-43374
lines changed

blog/2019-05-29-long-blog-post.md

-44
This file was deleted.

blog/2021-08-01-mdx-blog-post.mdx

-20
This file was deleted.
Binary file not shown.

blog/2021-08-26-welcome/index.md

-25
This file was deleted.

docs/api/browser/_category_.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"label": "browser",
3+
"position": 2.5,
4+
"collapsible": true,
5+
"collapsed": true,
6+
"className": "red",
7+
"link": {
8+
"type": "doc",
9+
"id": "cb_index"
10+
}
11+
}

docs/api/browser/cb_index.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# browser
2+
- [click](click.md) - Clicks on a specified element on the page.
3+
- [close](close.md) - Closes the current page.
4+
- [enter](enter.md) - Simulates the Enter key press on the current page.
5+
- [extractText](extractText.md) - Extracts text from the current page.
6+
- [getContent](getContent.md) - Retrieves the content of the current page.
7+
- [getHTML](getHTML.md) - Retrieves the HTML content of the current page.
8+
- [getMarkdown](getMarkdown.md) - Retrieves the Markdown content of the current page.
9+
- [getPDF](getPDF.md) - Retrieves the PDF content of the current page.
10+
- [getUrl](getUrl.md) - Retrieves the current URL of the browser's active page.
11+
- [goToPage](goToPage.md) - Navigates to a specified URL.
12+
- [newPage](newPage.md) - Opens a new page in the browser.
13+
- [pdfToText](pdfToText.md) - Converts the PDF content of the current page to text.
14+
- [screenshot](screenshot.md) - Takes a screenshot of the current page.
15+
- [scroll](scroll.md) - Scrolls the current page in a specified direction by a specified number of pixels.
16+
- [search](search.md) - Performs a search on the current page using a specified query.
17+
- [type](type.md) - Types text into a specified element on the page.

docs/api/browser/click.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: click
3+
cbbaseinfo:
4+
description: Clicks on a specified element on the page.
5+
cbparameters:
6+
parameters:
7+
- name: elementid
8+
typeName: string
9+
description: The ID of the element to click.
10+
returns:
11+
signatureTypeName: Promise
12+
description: A promise that resolves when the click action is complete.
13+
---
14+
<CBBaseInfo/>
15+
<CBParameters/>

docs/api/browser/close.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: close
3+
cbbaseinfo:
4+
description: Closes the current page.
5+
cbparameters:
6+
parameters: []
7+
returns:
8+
signatureTypeName: void
9+
description: ' '
10+
---
11+
<CBBaseInfo/>
12+
<CBParameters/>

docs/api/browser/enter.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: enter
3+
cbbaseinfo:
4+
description: Simulates the Enter key press on the current page.
5+
cbparameters:
6+
parameters: []
7+
returns:
8+
signatureTypeName: Promise
9+
description: A promise that resolves when the Enter action is complete.
10+
---
11+
<CBBaseInfo/>
12+
<CBParameters/>

docs/api/browser/extractText.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: extractText
3+
cbbaseinfo:
4+
description: Extracts text from the current page.
5+
cbparameters:
6+
parameters: []
7+
returns:
8+
signatureTypeName: void
9+
description: ' '
10+
---
11+
<CBBaseInfo/>
12+
<CBParameters/>

docs/api/browser/getContent.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: getContent
3+
cbbaseinfo:
4+
description: Retrieves the content of the current page.
5+
cbparameters:
6+
parameters: []
7+
returns:
8+
signatureTypeName: void
9+
description: ' '
10+
---
11+
<CBBaseInfo/>
12+
<CBParameters/>

docs/api/browser/getHTML.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: getHTML
3+
cbbaseinfo:
4+
description: Retrieves the HTML content of the current page.
5+
cbparameters:
6+
parameters: []
7+
returns:
8+
signatureTypeName: Promise
9+
description: A promise that resolves with the HTML content.
10+
---
11+
<CBBaseInfo/>
12+
<CBParameters/>

docs/api/browser/getMarkdown.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: getMarkdown
3+
cbbaseinfo:
4+
description: Retrieves the Markdown content of the current page.
5+
cbparameters:
6+
parameters: []
7+
returns:
8+
signatureTypeName: Promise
9+
description: A promise that resolves with the Markdown content.
10+
---
11+
<CBBaseInfo/>
12+
<CBParameters/>

docs/api/browser/getPDF.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: getPDF
3+
cbbaseinfo:
4+
description: Retrieves the PDF content of the current page.
5+
cbparameters:
6+
parameters: []
7+
returns:
8+
signatureTypeName: void
9+
description: ' '
10+
---
11+
<CBBaseInfo/>
12+
<CBParameters/>

docs/api/browser/getUrl.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: getUrl
3+
cbbaseinfo:
4+
description: Retrieves the current URL of the browser's active page.
5+
cbparameters:
6+
parameters: []
7+
returns:
8+
signatureTypeName: Promise
9+
description: A promise that resolves with the URL.
10+
---
11+
<CBBaseInfo/>
12+
<CBParameters/>

docs/api/browser/goToPage.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: goToPage
3+
cbbaseinfo:
4+
description: Navigates to a specified URL.
5+
cbparameters:
6+
parameters:
7+
- name: url
8+
typeName: string
9+
description: The URL to navigate to.
10+
returns:
11+
signatureTypeName: Promise
12+
description: A promise that resolves when navigation is complete.
13+
---
14+
<CBBaseInfo/>
15+
<CBParameters/>

docs/api/browser/newPage.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: newPage
3+
cbbaseinfo:
4+
description: Opens a new page in the browser.
5+
cbparameters:
6+
parameters: []
7+
returns:
8+
signatureTypeName: void
9+
description: ' '
10+
---
11+
<CBBaseInfo/>
12+
<CBParameters/>

docs/api/browser/pdfToText.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: pdfToText
3+
cbbaseinfo:
4+
description: Converts the PDF content of the current page to text.
5+
cbparameters:
6+
parameters: []
7+
returns:
8+
signatureTypeName: void
9+
description: ' '
10+
---
11+
<CBBaseInfo/>
12+
<CBParameters/>

docs/api/browser/screenshot.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: screenshot
3+
cbbaseinfo:
4+
description: Takes a screenshot of the current page.
5+
cbparameters:
6+
parameters: []
7+
returns:
8+
signatureTypeName: void
9+
description: ' '
10+
---
11+
<CBBaseInfo/>
12+
<CBParameters/>

docs/api/browser/scroll.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: scroll
3+
cbbaseinfo:
4+
description: >-
5+
Scrolls the current page in a specified direction by a specified number of
6+
pixels.
7+
cbparameters:
8+
parameters:
9+
- name: direction
10+
typeName: string
11+
description: The direction to scroll.
12+
- name: pixels
13+
typeName: string
14+
description: The number of pixels to scroll.
15+
returns:
16+
signatureTypeName: Promise
17+
description: A promise that resolves when the scroll action is complete.
18+
---
19+
<CBBaseInfo/>
20+
<CBParameters/>

docs/api/browser/search.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: search
3+
cbbaseinfo:
4+
description: Performs a search on the current page using a specified query.
5+
cbparameters:
6+
parameters:
7+
- name: elementid
8+
typeName: string
9+
description: The ID of the element to perform the search in.
10+
- name: query
11+
typeName: string
12+
description: The search query.
13+
returns:
14+
signatureTypeName: Promise
15+
description: A promise that resolves with the search results.
16+
---
17+
<CBBaseInfo/>
18+
<CBParameters/>

docs/api/browser/type.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: type
3+
cbbaseinfo:
4+
description: Types text into a specified element on the page.
5+
cbparameters:
6+
parameters:
7+
- name: elementid
8+
typeName: string
9+
description: The ID of the element to type into.
10+
- name: text
11+
typeName: string
12+
description: The text to type.
13+
returns:
14+
signatureTypeName: Promise
15+
description: A promise that resolves when the typing action is complete.
16+
---
17+
<CBBaseInfo/>
18+
<CBParameters/>

docs/api/cbstate/_category_.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"label": "cbstate",
3+
"position": 2.5,
4+
"collapsible": true,
5+
"collapsed": true,
6+
"className": "red",
7+
"link": {
8+
"type": "doc",
9+
"id": "cb_index"
10+
}
11+
}

docs/api/cbstate/cb_index.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# cbstate
2+
- [getApplicationState](getApplicationState.md) -

0 commit comments

Comments
 (0)