-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* - Added tour - Added action and batch number in log - Fixed Ads spacing - Improved the Sidebar text * Formated
- Loading branch information
1 parent
7f47fe4
commit 5df4164
Showing
10 changed files
with
164 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
export const steps = [ | ||
{ | ||
selector: '[data-testid=configurations-add]', | ||
content: () => ( | ||
<div> | ||
To create a new setup, just click on "New Config". | ||
<br /> | ||
<a href='https://getautoclicker.com/docs/3.x/config-list/add-configuration/' target='_blank' rel='noopener noreferrer'> | ||
Add Configuration | ||
</a> | ||
</div> | ||
), | ||
}, | ||
{ | ||
selector: 'input[name=url]', | ||
content: () => ( | ||
<div> | ||
Every configuration comes with its own special web address where it operates. You can even employ regular expressions to match multiple{' '} | ||
<a href='https://getautoclicker.com/docs/3.x/configuration/url/' target='_blank' rel='noopener noreferrer'> | ||
URLs | ||
</a> | ||
. | ||
</div> | ||
), | ||
}, | ||
{ | ||
selector: '#add-action', | ||
content: () => ( | ||
<div> | ||
Whether you\'re filling an input field or clicking a button, each is treated as a single action. To include additional actions, simply click on the "Add Action" button. | ||
<br /> | ||
<a href='https://getautoclicker.com/docs/3.x/action/overview/' target='_blank' rel='noopener noreferrer'> | ||
Action | ||
</a> | ||
</div> | ||
), | ||
}, | ||
{ | ||
selector: '[name=elementFinder]', | ||
content: () => ( | ||
<div> | ||
Every component on a webpage, be it a button, link, input field, or any simple UI, is considered an element. The Element Finder feature assists the extension in locating these elements within | ||
the page.There are various methods available to locate elements within a webpage. | ||
<br /> | ||
<a href='https://getautoclicker.com/docs/3.x/action/element-finder/' target='_blank' rel='noopener noreferrer'> | ||
Element Finder | ||
</a> | ||
</div> | ||
), | ||
}, | ||
{ | ||
selector: '[name=value]', | ||
content: () => ( | ||
<div> | ||
Values are employed to populate input fields, and if you wish to click a component, you can simply leave the field blank. Explore numerous other options available for customization. | ||
<br /> | ||
<a href='https://getautoclicker.com/docs/3.x/action-value/overview/' target='_blank' rel='noopener noreferrer'> | ||
Value | ||
</a> | ||
</div> | ||
), | ||
}, | ||
{ | ||
selector: '#tour', | ||
content: 'To restart the tour, simply click the link provided here.', | ||
}, | ||
]; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters