Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)