
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Tomation is an innovative framework designed for streamlining the automation of tasks within a web browser environment.
Tomation is an innovative framework designed for streamlining the automation of tasks within a web browser environment.
The core concept behind Tomation is its seamless integration as a browser extension, offering an efficient solution for test management and execution log handling.
Clone project locally and link it to your project.
At tomation run
npm link
In your project run
npm link tomation
It's recommended to use Page Object Model (POM) to implement automated tests. Create a file to automate a login page for example. login-page.ts
import { Task, Click, Type, TypePassword } from 'tomation'
// --- UI Elements ---
const loginButton = is.BUTTON
.where(innerTextIs('Login'))
.as('Login Button')
const usernameInput = is.INPUT
.where((elem: HTMLElement) => elem?.parentElement?.parentElement?.children[1]?.textContent?.trim() === 'Username')
.as('Username Input')
const passwordInput = is.INPUT
.where((elem: HTMLElement) => elem?.parentElement?.parentElement?.children[1]?.textContent?.trim() === 'Password')
.as('Password Input')
// --- UI Actions ---
const login = Task('Login task', (params: { username: string, password: string }) => {
Type(params.username).in(usernameInput)
TypePassword(params.password).in(passwordInput)
Click(loginButton)
})
export default {
// UI Elements
loginButton,
usernameInput,
passwordInput,
// Actions
login,
}
import LoginPage from '~/login-page'
function LoginTest() {
Test('Login', () => {
LoginPage.login({
username: 'admin',
password: '12345',
})
})
}
export {
LoginTest
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
FAQs
Tomation is an innovative framework designed for streamlining the automation of tasks within a web browser environment.
We found that tomation demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.