Questions tagged [serenity-bdd]

Experience the power of Serenity BDD in creating efficient automated acceptance and regression tests that are easy to maintain. With Serenity, you can generate informative reports with visuals and narratives to showcase the functionality and behavior of your application. Dive into a tool that not only highlights executed tests but also ensures that all requirements have been thoroughly tested.

The following code is experiencing difficulties when running on the Chrome browser

https://i.stack.imgur.com/GjG7r.pngI have developed a function that can click the checkbox of a specific row and retrieve the text from that row. CheckBoxXpath-> private static final String XPATH_JOBRATECATEGORIES_CHECKBOX_LIST = "//kendo-grid-list// ...

Serenity BDD does not have the capability to capture screenshots using appium

Having an issue with Serenity BDD and the Screenplay Pattern in combination with Appium 1.3.1. The problem is that the project is not generating screenshots for each step, resulting in the report not displaying the captures of the steps. Despite no errors ...

Is it possible to switch to a single machine with higher configuration and 2 nodes instead of having 2 machines with lower configuration, each containing only 1 node in the Selenium grid?

I am currently utilizing two Windows VMs, each equipped with 2 CPU cores and 8GB of RAM. My tests have been running smoothly using Selenium Grid, with 7 instances of Chrome being run simultaneously across these machines. This setup entails that one machine ...

Are there any specific settings for the Internet Explorer webdriver in Serenity that allow for bypassing security certificates?

Just to give some background, I utilize a serenity.properties file for configuring my webdriver settings. Currently, I am working with serenity 2/cucumber 4/java. I was hoping to implement something along the lines of how Chrome driver interacts with sere ...

Encountering a null pointer exception when attempting to declare a WebElementFacade within a page object

While attempting to implement the page object model in Serenity BDD, I encountered a null pointer exception when declaring WebElementFacade in my page object. Below is the code for my page object class: package PageObjects; import net.serenitybdd.core.an ...