BoxLang 🚀 A New JVM Dynamic Language Learn More...
Testbox v4+
ColdBox is not required.
tests/Application.cfc
this.javaSettings = {
loadPaths: directoryList(
rootPath & "modules/cbPlaywright/lib",
true,
"array",
"*jar"
),
loadColdFusionClassPath: true,
reloadOnChange: false
};
cbPlaywright
as well.this.mappings[ "/cbPlaywright" ] = rootPath & "/modules/cbPlaywright";
Note: You can't use the mapping in the
javaSettings
since they are both in the psuedo-constructor.
CBPLAYWRIGHT_DRIVER_DIR
environment variable to the correct location of the Playwright driver.To interact with the Playwright CLI, use commandbox-cbplaywright
:
playwright-cli
# or
playwright
You can see the documentation for the Playwright Java CLI here.
To use Playwright, first you must install one or more test browsers. Refer to the Playwright docs on Browsers for more information.
Examples:
box playwright install chromium
box playwright install firefox
box playwright install webkit
box playwright install msedge
To use cbPlaywright, create a test spec that extends either cbPlaywright.models.PlaywrightTestCase
or cbPlaywright.models.ColdBoxPlaywrightTestCase
. What's the difference between these two?
PlaywrightTestCase
extends testbox.system.BaseSpec
while
ColdBoxPlaywrightTestCase
extends coldbox.system.testing.BaseTestCase
.
Basically, if you need to access your ColdBox app in your Playwright test, use ColdBoxPlaywrightTestCase
.
NOTE: ColdBox is not required to use cbPlaywright. The only dependency is TestBox.
component extends="cbPlaywright.models.PlaywrightTestCase" {
// ...
}
A PlaywrightTestCase
CFC automatically creates a variables.playwright
instance in the beforeAll
method.
If you have a
beforeAll
on your test case, make sure to callsuper.beforeAll()
. Otherwise, you will not have access to thevariables.playwright
instance.
This playwright
variable is an instance of the Java Playwright
class. From this variable you can
create browsers to start running your tests.
component extends="cbPlaywright.models.PlaywrightTestCase" {
function run() {
describe( "home page", () => {
it( "can visit the home page", () => {
var browser = variables.playwright.firefox().launch();
var page = browser.newPage();
navigate( page, "http://" & CGI.HTTP_HOST );
waitForLoadState( page );
expect( page.title() ).toBe( "Welcome to my site!" );
} );
} );
}
}
All of the methods above are called on the Java objects provided by the Playwright Java SDK. When using cbPlaywright, you will often reference the Playwright Java SDK documentation.
cbPlaywright provides helper functions to make interacting with the Java SDK easier.
You can find all of these helper functions inside
cbPlaywright.models.PlaywrightMixins
Builds up a URL string to the currently running server. It can take any amount of arguments and will
intelligently combine them into a path prepended with the current CGI.HTTP_HOST
.
Name | Type | Required | Default | Description |
---|---|---|---|---|
paths | string | false | null | This is a variadic parameter. Any number of strings can be passed as separate arguments. They will all be combined into one URL path prepended with the current CGI.HTTP_HOST . |
Example:
route( "/users", userId, "edit" );
// http://127.0.0.1:51423/users/42/edit
Converts a string an optional flags into a Java Regex Pattern
Name | Type | Required | Default | Description |
---|---|---|---|---|
pattern | string | true | The regex pattern to search for. Don't include any surrounding slashes / or flags. | |
flags | String OR [String] | false | null | Any flags for the regex. Supported flags are i (case insensitive), m (multiline), s (dotall), and u (unicode). |
Example:
var browser = launchBrowser( variables.playwright.webkit() );
var page = browser.newPage();
navigate( page, "https://coldbox.org" );
click( getByRole( coldbox, "link", { "name": regex( "CFCASTS", "i" ), "exact": true } ) );
Navigates a Page to a URL.
| Name | Type | Required | Default | Description | | ----- | ------ | -------- | ------- | | | page | com.microsoft.playwright.Page | true | | A Playwright page to navigate. | | path | string | true | | The path to navigate to. |
Example:
var browser = launchBrowser( variables.playwright.webkit() );
var page = browser.newPage();
navigate( page, route( "/" ) );
expect( page.title() ).toBe( "My Site" );
Finds an ElementHandle in the given Page by selector.
| Name | Type | Required | Default | Description | | ----- | ------ | -------- | ------- | | | page | com.microsoft.playwright.Page | true | | A Playwright page in which to find the selector. | | selector | string | true | | A selector to use when resolving DOM element. |
Example:
var browser = launchBrowser( variables.playwright.chromium() );
var page = browser.newPage();
navigate( page, "https://google.com" );
waitForLoadState( page );
expect( page.title() ).toBe( "Google" );
var searchBox = locateElement( page, '[aria-label="Search"]' );
https://playwright.dev/docs/locators#locate-by-role https://playwright.dev/java/docs/api/class-page#page-get-by-role
Allows locating elements by their ARIA role, ARIA attributes and accessible name.
Consider the following DOM structure.
<h3>Sign up</h3>
<label>
<input type="checkbox" /> Subscribe
</label>
<br/>
<button>Submit</button>
You can locate each element by it's implicit role:
expect( getByRole( page, "heading", { name: "Sign up" } ).isVisible() ).toBeTrue();
check( getByRole( page, "checkbox", { name: "Subscribe" } ) );
click( getByRole( page, "button", { name: regex( "submit", "i" ) } ) );
| Name | Type | Required | Default | Description |
| ----- | ------ | -------- | ------- | |
| page | com.microsoft.playwright.Page | true | | A Playwright page in which to find the selector. |
| role | string | true | | One of the valid Aria roles |
| options | struct | false | {}
| Additional options to further refine the selection. Valid options are: checked, disabled, exact, expanded, includeHidden, level, name, pressed, selected
|
Valid Aria roles include:
role enum AriaRole { ALERT, ALERTDIALOG, APPLICATION, ARTICLE, BANNER, BLOCKQUOTE, BUTTON, CAPTION, CELL, CHECKBOX, CODE, COLUMNHEADER, COMBOBOX, COMPLEMENTARY, CONTENTINFO, DEFINITION, DELETION, DIALOG, DIRECTORY, DOCUMENT, EMPHASIS, FEED, FIGURE, FORM, GENERIC, GRID, GRIDCELL, GROUP, HEADING, IMG, INSERTION, LINK, LIST, LISTBOX, LISTITEM, LOG, MAIN, MARQUEE, MATH, METER, MENU, MENUBAR, MENUITEM, MENUITEMCHECKBOX, MENUITEMRADIO, NAVIGATION, NONE, NOTE, OPTION, PARAGRAPH, PRESENTATION, PROGRESSBAR, RADIO, RADIOGROUP, REGION, ROW, ROWGROUP, ROWHEADER, SCROLLBAR, SEARCH, SEARCHBOX, SEPARATOR, SLIDER, SPINBUTTON, STATUS, STRONG, SUBSCRIPT, SUPERSCRIPT, SWITCH, TAB, TABLE, TABLIST, TABPANEL, TERM, TEXTBOX, TIME, TIMER, TOOLBAR, TOOLTIP, TREE, TREEGRID, TREEITEM }
Example:
var browser = launchBrowser( variables.playwright.chromium() );
var page = browser.newPage();
navigate( page, "https://coldbox.org" );
waitForLoadState( page );
var cfcastsLink = getByRole( page, "link", { "name": regex( "CFCASTS", "i" ), "exact": true } );
click( cfcastsLink );
https://playwright.dev/docs/locators#locate-by-label https://playwright.dev/java/docs/api/class-page#page-get-by-label
Allows locating input elements by the text of the associated
For example, this method will find inputs by label "Username" and "Password" in the following DOM:
<input aria-label="Username">
<label for="password-input">Password:</label>
<input id="password-input">
fill( getByLabel( page, "Username" ), "john" );
fill( getByLabel( page, "Password" ), "secret" );
| Name | Type | Required | Default | Description |
| ----- | ------ | -------- | ------- | |
| page | com.microsoft.playwright.Page | true | | A Playwright page in which to find the selector. |
| text | string | true | | Text to locate the element. |
| exact | boolean | false | false
| Whether to find an exact match: case-sensitive and whole-string. Default to false. Ignored when locating by a regular expression. Note that exact match still trims whitespace. |
Example:
var browser = launchBrowser( variables.playwright.chromium() );
var page = browser.newPage();
navigate( page, "https://google.com" );
waitForLoadState( page );
var searchField = getByLabel( page, "Search" );
fill( searchField, "coldbox" );
Checks an Locator.
| Name | Type | Required | Default | Description |
| ----- | ------ | -------- | ------- | |
| locator | com.microsoft.playwright.Locator | true | | A Playwright Locator. You usually retrieve this from a locateElement
or getBy*
call. |
| options | struct | false | {}
| Options for the check event. Valid options are: force
(boolean), noWaitAfter
(boolean), position
( { x: double, y: double } ), timeout
(double), and trial
(boolean) |
Example:
var browser = launchBrowser( variables.playwright.chromium() );
var page = browser.newPage();
navigate( page, "https://cfcasts.com/login" );
waitForLoadState( page );
check( getByLabel( "Remember Me" ) );
Clicks an ElementHandle.
| Name | Type | Required | Default | Description |
| ----- | ------ | -------- | ------- | |
| element | com.microsoft.playwright.ElementHandle | true | | A Playwright ElementHandle. You usually retrieve this from a locateElement
call. |
Example:
var browser = launchBrowser( variables.playwright.chromium() );
var page = browser.newPage();
navigate( page, "https://google.com" );
waitForLoadState( page );
expect( page.title() ).toBe( "Google" );
var searchBox = locateElement( page, '[aria-label="Search"]' );
click( searchBox );
Fills an ElementHandle with the given value.
| Name | Type | Required | Default | Description |
| ----- | ------ | -------- | ------- | |
| element | com.microsoft.playwright.ElementHandle | true | | A Playwright ElementHandle. You usually retrieve this from a locateElement
call. |
| value | string | true | | The value to fill. |
Example:
var browser = launchBrowser( variables.playwright.chromium() );
var page = browser.newPage();
navigate( page, "https://google.com" );
waitForLoadState( page );
expect( page.title() ).toBe( "Google" );
var searchBox = locateElement( page, '[aria-label="Search"]' );
click( searchBox );
fill( searchBox, "playwright" );
Presses a given key on an ElementHandle.
| Name | Type | Required | Default | Description |
| ----- | ------ | -------- | ------- | |
| element | com.microsoft.playwright.ElementHandle | true | | A Playwright ElementHandle. You usually retrieve this from a locateElement
call. |
| key | string | true | | The key to press. |
Example:
var browser = launchBrowser( variables.playwright.chromium() );
var page = browser.newPage();
navigate( page, "https://google.com" );
waitForLoadState( page );
expect( page.title() ).toBe( "Google" );
var searchBox = locateElement( page, '[aria-label="Search"]' );
click( searchBox );
fill( searchBox, "playwright" );
press( searchBox, "Enter" );
Launches a Browser from a Playwright BrowserType instance. Returns a Playwright Browser instance.
Name | Type | Required | Default | Description |
---|---|---|---|---|
browserType | com.microsoft.playwright.BrowserType | true | A Playwright BrowserType to launch. | |
headless | boolean | false | true | Flag to launch the browser in headless mode. Only interactive browser can be paused. |
Example:
var browser = launchBrowser( variables.playwright.firefox() );
Launches an interactive Browser from a Playwright BrowserType instance. An interactive Browser is one that is not running in headless mode. Returns a Playwright Browser instance.
Name | Type | Required | Default | Description |
---|---|---|---|---|
browserType | com.microsoft.playwright.BrowserType | true | A Playwright BrowserType to launch. |
Example:
var browser = launchInteractiveBrowser( variables.playwright.msedge() );
Captures a screenshot from a Page instance. Returns the same Page instance.
Name | Type | Required | Default | Description |
---|---|---|---|---|
page | com.microsoft.playwright.Page | true | A Playwright Page to capture as a screenshot. | |
path | string | true | The path to save the screenshot. | |
options | struct | false | {} | Additional options to customize the screenshot. |
Additional options are as follows:
{
// set a region to capture for the screenshot
"clip": {
"x": 100,
"y": 100,
"width": 100,
"height": 100
}
// captures the full scrollable page instead of the currently visible viewport
"fullPage": true,
// Hides default white background and allows capturing screenshots with transparency. Defaults to false.
"omitBackground": true,
// The quality of the image, between 0-100. Not applicable to `png` images.
"quality": 75,
// Maximum time in milliseconds to capture the screenshot. Defaults to 30 seconds. Pass 0 to disable.
"timeout": 5 * 1000,
// The screenshot type, "png" or "jpeg". Defaults to "png".
"type": "jpeg"
}
Example:
var browser = launchBrowser( variables.playwright.webkit() );
var page = browser.newPage();
page.navigate( route( "/" ) );
screenshotPage( page, "/tests/results/homePage.png", { "type": "jpeg" } );
Creates a new recorded BrowserContext from a Playwright Browser. A recorded context saves one or more videos of all the actions taken by the context. The context is created and provided to you via a callback. If any additional pages or popups are created, the context will save a video for each of them.
Returns the passed in Browser instance.
Name | Type | Required | Default | Description |
---|---|---|---|---|
browser | com.microsoft.playwright.Browser | true | A Playwright Browser from which to create a recorded BrowserContext. | |
directory | string | true | The path to a directory to save any generated videos. | |
callback | function | true | A callback that receives the recorded context. All actions to be recorded should be called on this context variable inside the callback. | |
options | struct | false | {} | Additional options to customize the recordings. |
Additional options are as follows:
{
// Dimensions of the recorded videos. If not specified the size will be equal to viewport
// scaled down to fit into 800x800. If viewport is not configured explicitly the video size
// defaults to 800x450. Actual picture of each page will be scaled down if necessary
// to fit the specified size.
"recordVideoSize": {
"height": 1280,
"width": 720
}
}
Example:
var browser = launchBrowser( variables.playwright.chromium() );
newRecordedContextForBrowser( browser, "/tests/results/videos", function( context ) {
var page = context.newPage();
page.navigate( route( "/" ) );
screenshotPage( page, "/tests/results/homePage.png" );
expect( page.title() ).toBe( "Welcome to Coldbox!" );
page.locator( "text=About" ).click();
page.locator( "text=Official Site" ).click();
expect( page.url() ).toBe( "https://coldbox.org/" );
page.waitForLoadState();
screenshotPage( page, "/tests/results/coldboxPage.png" );
} );
Sets up a Playwright BrowserContext to allow tracing. Tracing creates a zip archive that can be replayed either locally or on https://trace.playwright.dev/.
Name | Type | Required | Default | Description |
---|---|---|---|---|
context | com.microsoft.playwright.BrowserContext | true | A Playwright BrowserContext to capture a trace. | |
path | string | true | The path to save the trace. | |
callback | function | true | A callback to run additional Playwright methods. Any methods called on the passed in context inside this callback will be recorded in the trace. | |
startOptions | struct | false | {} | Additional start options to customize the trace. |
Additional startOptions are as follows:
{
// Whether to capture screenshots during tracing. Screenshots are used to build a timeline preview.
// Defaults to `true`.
"screenshots": false
// If this option is true tracing will capture DOM snapshot on every action record network activity.
// Defaults to `true`.
"snapshots": false,
// Whether to include source files for trace actions.
// List of the directories with source code for the application must be provided via
// `PLAYWRIGHT_JAVA_SRC` environment variable.
// (The paths should be separated by ';' on Windows and by ':' on other platforms.)
// Defaults to `false`.
"sources": true,
// Trace name to be shown in the Trace Viewer.
"title": "My Home Page"
}
Example:
var browser = launchBrowser( variables.playwright.firefox() );
var context = browser.newContext();
traceContext( context, "/tests/results/trace.zip", function() {
var page = browser.newPage();
page.navigate( route( "/" ) );
screenshotPage( page, "/tests/results/homePage.png" );
} );
Waits for a popup to load after running the actions inside the callback, then returns the new popup Page. This action will fail if the navigation does not happen after 30 seconds.
Popups include any new pages opened by browser interactions (like
<a href="www.google.com" target="_blank">Google</a>
)
Name | Type | Required | Default | Description |
---|---|---|---|---|
page | com.microsoft.playwright.Page | true | A Playwright Page that will launch a popup. | |
callback | function | true | A callback containing Playwright actions that will end with launching a popup page. |
Example:
var browser = launchBrowser( variables.playwright.chromium() );
var page = browser.newPage();
page.navigate( "https://coldbox.org/" );
page.waitForLoadState();
screenshotPage( page, "/tests/results/coldboxPage.png" );
var popup = waitForPopup( page, function() {
page.locator( 'a:has-text("CFCASTS")' ).click();
} );
expect( popup.url() ).toBe( "https://cfcasts.com/" );
Waits for a navigation event to finish after running the actions inside the callback. This action will fail if the navigation does not happen after 30 seconds.
Name | Type | Required | Default | Description |
---|---|---|---|---|
page | com.microsoft.playwright.Page | true | A Playwright Page that will perform a navigation action. | |
callback | function | true | A callback containing Playwright actions that will end with performing a navigation action. |
Example:
var browser = launchBrowser( variables.playwright.chromium() );
var page = browser.newPage();
page.navigate( "https://cfcasts.com/" );
expect( page.url() ).toBe( "https://cfcasts.com/" );
var searchField = page.locator( '[placeholder="Search (Ctrl + K)"]' ).first();
searchField.click();
searchField.fill( "commandbox" );
waitForNavigation( page, function() {
searchField.press( "Enter" );
} )
expect( page.url() ).toBe( "https://cfcasts.com/browse?q=commandbox" );
screenshotPage( page, "/tests/results/cfcastsPage.png" );
Waits for the LOAD event from the DOM before continuing. This action will fail if the LOAD event is not fired before 30 seconds.
Name | Type | Required | Default | Description |
---|---|---|---|---|
page | com.microsoft.playwright.Page | true | A Playwright Page to wait for. |
Example:
var browser = launchBrowser( variables.playwright.chromium() );
var page = browser.newPage();
navigate( page, "https://google.com" );
waitForLoadState( page );
expect( page.title() ).toBe( "Google" );
Waits for the browser's url to be the given string. This action will fail if the url does not become the given string before 30 seconds.
Name | Type | Required | Default | Description |
---|---|---|---|---|
page | com.microsoft.playwright.Page | true | A Playwright Page to wait for. |
Example:
var browser = launchBrowser( variables.playwright.chromium() );
var page = context.newPage();
navigate( page, "https://google.com" );
waitForLoadState( page );
expect( page.title() ).toBe( "Google" );
var searchBox = locateElement( page, '[aria-label="Search"]' );
click( searchBox );
fill( searchBox, "playwright" );
press( searchBox, "Enter" );
expect( page.url() ).toInclude( "https://www.google.com/search?q=playwright" );
click(
locateElement(
page,
"text=Playwright: Fast and reliable end-to-end testing for modern ..."
)
);
waitForUrl( page, "https://playwright.dev/" );
Codgen is a way to interact with a browser and record the actions to copy to your test. You can do this from the Playwright Java CLI.
java -cp "modules/cbPlaywright/lib/*" -Dplaywright.cli.dir="lib/driver/linux/" com.microsoft.playwright.CLI codegen {YOUR_SITE_HERE}
Make sure to copy the code out before closing any windows. You will need to massage some of the generated Java code to fit CFML, specifically anything with arrow functions.
$
box install cbPlaywright