Skip to content

Commit b628139

Browse files
committed
updated links
1 parent 7f999b3 commit b628139

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

docs/1_index.md

Whitespace-only changes.

docs/api/browser/click.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ codebolt.browser.click("#test");
4646

4747
### Explaination
4848

49-
[Browser](../../developer/browser) Click function is used to click on the browser by selecting specific elementId.
49+
[Browser](../../developer/modules/browser) Click function is used to click on the browser by selecting specific elementId.
5050

5151
A browser is a used to access and display web pages. When a browser is open, users can interact with various elements on web pages, such as buttons, links, forms, and images.
5252

docs/api/browser/goToPage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ await codebolt.browser.goToPage('https://docs.codebolt.ai/docs/api/browser/goToP
3333

3434
### Explanation
3535

36-
[browser](../../developer/browser) The codebolt.browser.goToPage(url) function is used to navigate the browser to a new web page specified by the URL provided. When this function is called, the browser leaves the current page and loads the new page indicated by the URL.
36+
[browser](../../developer/modules/browser) The codebolt.browser.goToPage(url) function is used to navigate the browser to a new web page specified by the URL provided. When this function is called, the browser leaves the current page and loads the new page indicated by the URL.
3737

3838

3939

docs/developer/Modules/2_browser.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ A Browser Module typically refers to a component or library that allows develope
1919

2020
## Various methods are used in browser.
2121

22-
* [click](../api/browser/click) - Clicks on a specified element on the page.
23-
* [close](../api/browser/close) - Closes the current page.
24-
* [enter](../api/browser/enter) - Simulates the Enter key press on the current page.
25-
* [extractText](../api/browser/extractText) - Extracts text from the current page.
26-
* [getContent](../api/browser/getContent) - Retrieves the content of the current page.
27-
* [getHTML](../api/browser/getHTML) - Retrieves the HTML content of the current page.
28-
* [getMarkdown](../api/browser/getMarkdown) - Retrieves the Markdown content of the current page.
29-
* [getPDF](../api/browser/getPDF) - Retrieves the PDF content of the current page.
30-
* [getUrl](../api/browser/getUrl) - Retrieves the current URL of the browser's active page.
31-
* [goToPage](../api/browser/goToPage) - Navigates to a specified URL.
32-
* [newPage](../api/browser/newPage) - Opens a new page in the browser.
33-
* [pdfToText](../api/browser/pdfToText) - Converts the PDF content of the current page to text.
34-
* [screenshot](../api/browser/screenshot) - Takes a screenshot of the current page.
35-
* [scroll](../api/browser/scroll) - Scrolls the current page in a specified direction by a specified number of pixels.
36-
* [search](../api/browser/search) - Performs a search on the current page using a specified query.
37-
* [type](../api/browser/type) - Types text into a specified element on the page.
22+
* [click](../../api/browser/click) - Clicks on a specified element on the page.
23+
* [close](../../api/browser/close) - Closes the current page.
24+
* [enter](../../api/browser/enter) - Simulates the Enter key press on the current page.
25+
* [extractText](../../api/browser/extractText) - Extracts text from the current page.
26+
* [getContent](../../api/browser/getContent) - Retrieves the content of the current page.
27+
* [getHTML](../../api/browser/getHTML) - Retrieves the HTML content of the current page.
28+
* [getMarkdown](../../api/browser/getMarkdown) - Retrieves the Markdown content of the current page.
29+
* [getPDF](../../api/browser/getPDF) - Retrieves the PDF content of the current page.
30+
* [getUrl](../../api/browser/getUrl) - Retrieves the current URL of the browser's active page.
31+
* [goToPage](../../api/browser/goToPage) - Navigates to a specified URL.
32+
* [newPage](../../api/browser/newPage) - Opens a new page in the browser.
33+
* [pdfToText](../../api/browser/pdfToText) - Converts the PDF content of the current page to text.
34+
* [screenshot](../../api/browser/screenshot) - Takes a screenshot of the current page.
35+
* [scroll](../../api/browser/scroll) - Scrolls the current page in a specified direction by a specified number of pixels.
36+
* [search](../../api/browser/search) - Performs a search on the current page using a specified query.
37+
* [type](../../api/browser/type) - Types text into a specified element on the page.
3838

3939

docusaurus.config.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,19 @@ const config: Config = {
6666
type: 'docSidebar',
6767
sidebarId: 'userSidebar',
6868
position: 'left',
69-
label: 'Docs',
69+
label: 'Codebolt App',
7070
},
7171
{
7272
type: 'docSidebar',
7373
sidebarId: 'devSidebar',
7474
position: 'left',
75-
label: 'Agents',
75+
label: 'Agent Dev',
7676
},
7777
{
7878
type: 'docSidebar',
7979
sidebarId: 'jsapiSidebar',
8080
position: 'left',
81-
label: 'API',
81+
label: 'API Specs',
8282
},
8383
{
8484
to: '/blog',

0 commit comments

Comments
 (0)