Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mgerasika/tooltip-app
Tooltip example app
https://github.com/mgerasika/tooltip-app
Last synced: about 2 months ago
JSON representation
Tooltip example app
- Host: GitHub
- URL: https://github.com/mgerasika/tooltip-app
- Owner: mgerasika
- Created: 2023-09-28T10:10:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-05T18:36:07.000Z (about 1 year ago)
- Last Synced: 2023-12-05T19:36:17.277Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://tooltip-example-app.web.app/
- Size: 1.56 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### [demo](https://tooltip-example-app.web.app/)
### You can create tooltips with 2 ways - JSON or with t() function
```
const TOOLTIPS = [
t('Enter "hello"', page.loginInput().shouldHaveText('hello')),
t('Enter "password"', page.passwordInput().shouldHaveText('password')),
t('Sort table by "firstName" column', page.usersTable().shouldBeSorted('firstName')),
t('Sort table by "lastName" column', page.usersTable().shouldBeSorted('lastName')),
t('Press Submit button', page.submitButton().shouldBeClicked()),
];
```![Alt text](image-1.png)