
Security News
New React Server Components Vulnerabilities: DoS and Source Code Exposure
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.
@oracle/oraclejet-webdriver
Advanced tools
oraclejet-webdriver is a UI automation library built on top of selenium-webdriver, and designed to work with Oracle JET-based applications.
npm install -D @oracle/oraclejet-webdriver
The library is available with type definitions so that tests can be authored in TypeScript.
The root module @oracle/oraclejet-webdriver has a
default export where common utilities can be found.
WebElements that correspond to JET components can be found underneath
@oracle/oraclejet-webdriver/elements
A sample test script using Mocha:
import ojwd, { DriverManager } from '@oracle/oraclejet-webdriver';
import { ojInputText } from '@oracle/oraclejet-webdriver/elements';
import { By, WebDriver } from 'selenium-webdriver';
describe('My suite of tests', function () {
let driver: WebDriver;
before(async function () {
driver = await DriverManager.getDriver();
await ojwd.get(driver, 'http://myapp.com/');
});
it('changes an <oj-input-text> value', async function () {
const input = await ojInputText(driver, By.id('text-input-1'));
await input.changeValue('...');
});
after(function () {
DriverManager.releaseDriver(driver);
});
});
It's important to use the same version of oraclejet-webdriver which matches your oraclejet. If the versions differ, the library will throw an exception upon opening the page and a console error will be logged.
This library depends on the following:
FAQs
Oracle JET WebDriverJS WebElements
The npm package @oracle/oraclejet-webdriver receives a total of 492 weekly downloads. As such, @oracle/oraclejet-webdriver popularity was classified as not popular.
We found that @oracle/oraclejet-webdriver demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers 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
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.