Questions tagged [thucydides]

Thucydides is a library designed to make writing web-based acceptance tests based on WebDriver easier, and more fun

Thucydides is a tool that lets you use WebDriver-based unit or BDD tests to write more flexible and more reusable WebDriver-based tests, and also to generate documentation about your acceptance tests, including a narrative description of test, along with the corresponding screen shots, and also high-level summaries and aggregations of the test results

99 questions
1
vote
1 answer

Thucydides Reports have no data

Thucydides Reports have no data I am trying to genrate Thucydides report by looking into Demo Project. But my report always shows zero data. However, I can see some data in requirements, stories and capabilities Test Result Summary Test Type …
vkrams
  • 7,267
  • 17
  • 79
  • 129
1
vote
1 answer

Thucydides throwing warnings while managing screenshots

I am experiencing an intermittent problem when running my automated tests using Thucydides: Result: WARN Failed to write scaled screenshot for net.thucydides.core.model.Screenshot@82df887: {} java.io.IOException: Failed to copy full contents from…
user1814008
  • 201
  • 3
  • 9
1
vote
1 answer

Xvfb and thucydides/Selenium default path to run Firefox

CI Jenkins is running on CentOS headless machine under non-root user. Xvfb packege is installed, when I try the hint from How can I specify a display?, i.e. manually set in the console export DISPLAY=127.0.0.1:0 Xvfb :0 firefox & and it works -…
Eljah
  • 4,188
  • 4
  • 41
  • 85
1
vote
1 answer

Thucydides logging - write my logs into the console

I would like to be able to write my own log lines into the console log of Thucydides. However, when i try using the log4j, slf4j or Apache commons logging, i can write the Thucydides logs into a file with my log entries, but I cannot see my lines in…
Ibolit
  • 9,218
  • 7
  • 52
  • 96
1
vote
1 answer

HtmlElements and Thucydides

I want to use HtmlElements with my test-project based on Thucydides framework. It's not clear where to start and how it can be used. If I use it as in example in main project README, it does not populate elements without additional magic. Is there…
lanwen
  • 2,251
  • 1
  • 17
  • 30
1
vote
0 answers

Automatically email thucydides reports after execution

I am using thucydides and jbehave for test automation. Is there a way to automatically send email with test report that get generated as (target/site/thucydides/)index.html after every execution?
S N
  • 11
  • 1
1
vote
1 answer

How to configure output report for thucydides&jira plugin?

I'm trying to integrate thucydides with jira, using thucydides-jira-plugin 0.9.262. I want to get list of user stories (we have no epics in jira workflow) from jira to my thucydides report (like here - feature covereing section) but failed. I have…
RocketRaccoon
  • 2,559
  • 1
  • 21
  • 30
1
vote
1 answer

Thucydides + ScalaTest

I find the HTML reporter of scalatest pretty basic. I would like something like Thucydides or something else. Does any one has experience or pointer or where to look to find information on how to integrate both of them?
MaatDeamon
  • 9,532
  • 9
  • 60
  • 127
1
vote
0 answers

Parallel test execution in thucydides

How do you execute parallel tests in thucydides ? I've tried setting Dthucydides.batch.count ( and Dthucydides.batch.size because someone mentioned that count is now size?), Dthucydides.batch.number, putting the tag in the failsafe plugin in the…
metodski
  • 546
  • 8
  • 16
1
vote
2 answers

Thucydides: Install from scratch archetype - All tests are skipped

I have looked all over the place for answers to this. It would appear thucydides documentation is very limited and/or they were not expecting people to have problems this early. I am mainly following…
ricky116
  • 744
  • 8
  • 21
1
vote
1 answer

thucydedes test to replicate a text area getting populated with text

I am writing a thusydides test to replicate a scenario where a text field gets values added same as someone is typing a paragraph in that text area. my approach is to create a loop in the test case. @FindBy(id="my-description") private…
Sanath
  • 4,774
  • 10
  • 51
  • 81
1
vote
1 answer

Run thucydides with maven, skip tests

For testing purposes i'm using Thucydides combined with Jbehave. Now I have a story login.story Scenario: Succesfull login Given the user is on the login page Given the user enters his username Given the user enters his password When the user…
1
vote
0 answers

Thucydides mark step failed and continue test execution

I have thucydides + easyb. I have some method with @Test annotation. For examle: @Test public void Step1(){ assertThat(true).isTrue(); } @Test public void Step2(){ assertThat(true).isFalse(); } @Test public void Step3(){ …
Renat
  • 81
  • 6
1
vote
1 answer

Thucydides not respecting browser specified in pom.xml for project built from thucydides-jbehave-archetype

I have a project built from the thucydides-jbehave-archetype I'm trying to follow these steps to change the browser that Thucydides is running with when I run my projectL …
Dave
  • 6,141
  • 2
  • 38
  • 65
1
vote
1 answer

Element not being added when running test through webdriver

I am working on writing a story for a bdd framework which uses jbehave/selenium/webdriver and am having a problem where the test encounters an error while running the story but appears to be fine when running manually. I'm having a problem where…
Dave
  • 6,141
  • 2
  • 38
  • 65