Questions tagged [serenity-bdd]

Serenity BDD helps you write cleaner and more maintainable automated acceptance and regression tests faster. Serenity also uses the test results to produce illustrated, narrative reports that document and describe what your application does and how it works. Serenity tells you not only what tests have been executed, but more importantly, what requirements have been tested.

Serenity BDD helps you write cleaner and more maintainable automated acceptance and regression tests faster.

Serenity uses the test results to produce illustrated, narrative reports that document and describe what your application does and how it works. Serenity tells you not only what tests have been executed, but more importantly, what requirements have been tested.

Serenity BDD is one of the Behavior Driven Development (BDD) libraries.

There are integrations with other BDD libraries like JBehave and Cucumber (actually Cucumber-JVM)

Remark: Serenity-BDD was first called Thucydides, but was renamed in November 2014.

637 questions
0
votes
1 answer

ClassNotFoundException when trying to execute a jar file in serenity-jbehave

I'm getting the error below: Exception in thread "main"java.lang.NoClassDefFoundError:net/serenitybdd/jbehave/SerenityStories Caused by: java.lang.ClassNotFoundException: net.serenitybdd.jbehave.SerenityStories
User1111
  • 1
  • 2
0
votes
1 answer

How to Configure chrome driver in server

Currently i run a sample test-case in Intelij using selenium in serenity 1 2 3 4 5 6 7 8 9 public class LaunchingChrome { public static void main(String[] args) { String exePath = "C:\\Users\\abc\\Desktop\\Server\\chromedriver.exe"; …
0
votes
2 answers

Before/After Scenario not working in jbehave serenity BDD

Before/After Scenario not working in jbehave serenity BDD serenity.version 1.2.3-rc.5 serenity.jbehave.version 1.21.0 Eg public class UploadDocumentWhatStep { @BeforeScenario public void beforeEachScenario(){ System.out.println("in…
0
votes
0 answers

Created shell script for mac but I am getting an error when I run it

run_QA.sh: #!/bin/bash set v # ------------------------------------------------------- # 0 : Do NOT execute tests for the platform # Anything else(e.g. 1) Execute tests for the platform #…
ksyam
  • 1
0
votes
1 answer

How to control selection of Internet Explorer Driver 32bit from Serenity BDD

Currently I have IEDriver 32 and 64 bit executable files in m system path. When I initiate tests from Serenity BDD it automatically selects 64bit version. Can I control this selection using any specific property?
Saikat
  • 14,222
  • 20
  • 104
  • 125
0
votes
1 answer

Verify webelements on Machine 2 by executing scripts on Machine 1 without starting execution on Machine 2. Is it possible in Selenium or Serenity?

Assume that I have test scripts on Machine 1 where I have a step where i need to open browser and verify webelements. This webelements verification i have to do on both Machine1 and Machine2. But i have to execute script only from Machine1 and…
Venu N H
  • 1
  • 2
0
votes
1 answer

how to get jenkins serenity test case reports in json format or is there an API to do so?

so, whenever jenkins runs my code and generates report, is there an api or any way to get all those results. my final aim is to collect all those reports and create custom UI, so that whenever jenkins generates result. the UI should automatically…
0
votes
1 answer

SeeTest (Mobile automation) support for serenity

we are trying to implement serenity to test mobile application using SeeTest automation tool. can anyone guide what will be best way. currently we are able to connect to the device with the help of wrappedSeeTestDriver.once the execution completes…
azeem
  • 23
  • 8
0
votes
2 answers

Serenity BDD 1.2.2 Actions doesn't work correctly in Internet Explorer

After update serenity bdd on 1.2.2 from 1.1.34 Actions doesn't work correctly in Internet Explorer. Method does not work: withAction().contextClick(element).perform(); Enother example: withAction().click(element).perform(); if alert is present…
Viktor
  • 21
  • 3
0
votes
1 answer

How to get XPATH to select blank value from Drop down box

I have web page and from where i am trying to select the XPATH from a drop down box which dont have any value.