Search

Creating the Testcase File
Creating the Testcase FileTest Scenario Write your first testcase file using the test scenario below: You would like to test that your name does not appear on any learn.liferay.com article. The...
Last Modified: May 6, 2024 5:28 AM
Setup
SetupPrerequisites Java JDK 8 Google Chrome Gradle or Gradle Wrapper 6.6.1 or higher.Setting up the Poshi Standalone Gradle Project Create a new directory, example poshi-standalone. Setup...
Last Modified: May 6, 2024 5:28 AM
Syntax Validation
Syntax Validation The Poshi Standalone grade projects includes a validation task that can be used to check your code for syntax errors before running your test. To use this, simply run ./gradlew...
Last Modified: May 6, 2024 5:29 AM
Functions
Functions In Poshi, Functions handle extra WebDriver commands that an element might require to interact with a page object or element. Functions combine the basic methods defined in the...
Last Modified: May 6, 2024 5:30 AM
Understanding Test Results and Debugging Tests
Understanding Test Results and Debugging Tests Poshi tests are run on the terminal or command line. When a test run is completed there are multiple ways to view the test results and diagnose test...
Last Modified: May 6, 2024 5:29 AM
Poshi Basics
Poshi Basics New features, improvements, and system upgrades can sometimes introduce unexpected behaviors and bugs. Running suites of automated tests is an advantageous method of identifying...
Last Modified: May 6, 2024 5:29 AM
Poshi Layers
Poshi Layers Building reliable and reusable functions Defining Page Objects Scripting User Interactions Writing User Behaviors Making paths and macros specific yet reusable
Last Modified: May 6, 2024 5:30 AM
Macros
Macros A macro is a set of functions that perform a task. Macros are where locators (paths) and functions are brought together to script interactions that a user performs on the system being...
Last Modified: May 6, 2024 5:31 AM
Default Bundler Loaders
Default Bundler Loaders Several loaders are available for the liferay-npm-bundler by default: babel-loader: processes source files with Babel. This avoids an extra build step before the bundler. ...
Last Modified: May 6, 2024 5:23 AM
How the Bundler Publishes npm Packages
How the Bundler Publishes npm Packages When you deploy an OSGi bundle with the specified structure, its modules are made available for consumption through canonical URLs. To better illustrate...
Last Modified: May 6, 2024 5:24 AM
Understanding Bundler Configuration Presets
Understanding Bundler Configuration Presets The liferay-npm-bundler comes with a default configuration preset: liferay-npm-bundler-preset-standard. You may omit the liferay-npm-bundler prefix from...
Last Modified: May 6, 2024 5:25 AM
Liferay npm Bundler
Liferay npm Bundler The liferay-npm-bundler is a bundler (like Webpack or Browserify) that targets Liferay Portal as a platform and assumes you're using your npm packages from widgets (as opposed...
Last Modified: May 6, 2024 5:25 AM
Understanding the npmbundlerrc Structure
Understanding the npmbundlerrc Structure The liferay-npm-bundler is configured via a .npmbundlerrc file placed in the widget project's root folder. You can create a complete configuration manually...
Last Modified: May 6, 2024 5:25 AM
OSGi Bundles and npm Package Structure
OSGi Bundles and npm Package Structure To deploy JavaScript modules, you must create an OSGi bundle with the npm dependencies extracted from the project's node_modules folder and modify them to...
Last Modified: May 6, 2024 5:26 AM
Using Variables
Using Variables Though not a Poshi layer, variables are a large part of Poshi tests. Variables, like in other programming languages, are used to store data which can be referenced and reused in...
Last Modified: May 6, 2024 5:32 AM
Poshi Resources
Poshi Resources To give Poshi test writers easy access to commonly used functions or other files, Poshi resources were created to store existing Poshi files as dependencies that can be loaded...
Last Modified: May 6, 2024 5:32 AM
Configuration
Configuration In order to give test writers easy access to commonly used functions, paths, or macros, Poshi resources were created to store existing Poshi files as dependencies. These resources...
Last Modified: May 6, 2024 5:32 AM
Testcases
Testcases A testcase file in Poshi is a collection of test scenarios grouped in blocks of code called test blocks. The three main test blocks: setUp, test, and tearDown, are made up of multiple...
Last Modified: May 6, 2024 5:31 AM
Using Poshi Resources
Using Poshi Resources Once the Poshi resources jar file is loaded onto your Poshi project, you are now able to use Liferay's commonly used functions, paths, and macros. To distinguish between...
Last Modified: May 6, 2024 5:32 AM
Node Version Information
Node Version Information Liferay DXP uses Node (and NPM) for many different frontend components. Specifically, the Liferay Theme Generator and Liferay's JavaScript application tools require the...
Last Modified: May 6, 2024 5:33 AM