Anybody is a web automation library that works for you, so you can focus on the things that matter. It handles all the tedious website interactions while you spend your time on what's important. Let it take care of the repetitive tasks, so you don't have to.
Here’s how you can get started with Anybody in just a few lines of code:
import anybody from 'anybody';
anybody
.online({ hidden: true }) // Start a browser
.goto('https://example.com') // Go to a website
.click({ text: 'Login' }) // Click a button with the text "Login"
.type({ placeholder: 'Username' }, 'myuser') // Type into the username field
.type({ placeholder: 'Password' }, 'mypassword') // Type into the password field
.click({ text: 'Submit' }) // Click the submit button
.close(); // Close the browser
Here are some simple examples of how you can use Anybody for everyday tasks.
anybody
.online({ hidden: false }) // Show the browser window
.goto("https://youtube.com") // Go to YouTube
.type("input[name='search_query']", "incredimo") // Type a search term
.click("button[aria-label='Search']") // Click the search button
.sleep({ seconds: 10 }) // Wait for 10 seconds
.close(); // Close the browser
anybody
.online({ hidden: false }) // Show the browser window
.goto("https://instagram.com") // Go to Instagram
.type({ css: "input[name='username']" }, "myusername") // Enter username
.type({ css: "input[name='password']" }, "mypassword") // Enter password
.click({ css: "button[type='submit']" }) // Click the login button
.sleep({ seconds: 10 }) // Wait for 10 seconds
.close(); // Close the browser
anybody
.online({ hidden: false }) // Show the browser window
.goto("https://google.com") // Go to Google
.type({ tag: "input", id: "q" }, "incredimo") // Type a search term
.click({ tag: "button", id: "search_button" }) // Click the search button
.wait({ until: { element: "div.g", visible: true } }) // Wait for results to load
.close(); // Close the browser
Anybody is designed by the lazy for the lazy. It's super smart and does all the hard work for you:
- Dead Simple Syntax: You describe what you want to do, and it handles the rest.
- Auto-Wait Everything: It's smart enough to wait for elements to load. (im looking at you, puppeteer)
- Ultra Short Scripts: Write in 5 lines what would take 50 lines in other tools
- Zero Config Required: Works out of the box with smart defaults for everything
To get started, eat bun.
bun i anybody
- Windows: Right now, it only works on windows. (if you'r on linux, you probably are not very lazy)
Here’s a simple example to show you how Anybody works:
import anybody from 'anybody';
anybody
.online({ hidden: true }) // Start a browser
.goto('example.com') // Go to a website (https:// is a given duh!)
.click({ text: 'Login' }) // Click a button with the text "Login"
.type({ placeholder: 'Username' }, 'myuser') // Type into the username field
.type({ placeholder: 'Password' }, 'mypassword') // Type into the password field
.click({ text: 'Submit' }) // Click the submit button
.sleep({ seconds: 10 }) // A little nap, just coz we can!
.close(); // Close the browser. keep it clean!
If i gave you text selectors, you'd complain about type safety. So ill let you choose your own way.
// By CSS selector
.click('.login-button')
// By text content
.click({ text: 'Login' })
// By placeholder
.type({ placeholder: 'Enter username' }, 'myuser')
// By test ID
.click({ testid: 'login-button' })
// By ARIA label
.click({ aria: 'Login button' })
// By ID
.click({ id: 'login-btn' })
// By class
.click({ class: 'primary-button' })
// By XPath
.click({ xpath: '//button[contains(text(), "Login")]' })
// When you put 2 selectors, it will wait for both to be present
.click({ text: 'Login', css: 'button' }) // will wait for both to be present
// Incase if you need either one or the other. you'r covered there too!
.click({ or: [{ text: 'Login' }, { css: 'button' }] }) // will wait for either to be present
You can chain actions together to create a sequence of steps:
anybody
.online({ hidden: true })
.goto('https://example.com')
.click({ text: 'Login' })
.type({ placeholder: 'Username' }, 'myuser')
.type({ placeholder: 'Password' }, 'mypassword')
.click({ text: 'Submit' })
.close();
You can customize Anybody’s behavior with these options:
anybody.online({
hidden: true, // Run in hidden mode
debug: true, // logs shit like an annoying girlfriend
timeout: 10000, // Set a global timeout (in milliseconds)
// sneaky : true, // 😉 coming soon (stealth mode)
});
If you find Anybody useful and want to contribute, feel free to submit a Pull Request. I’d love to see what you come up with!
Anybody is licensed under the MIT License. See the LICENSE file for details.
I built Anybody to solve my own problems, and I hope it can help you too. Give it a try, and let me know what you think! 🚀