Questions tagged [fluentlenium]

FluentLenium is a framework that helps you to write Selenium tests.

FluentLenium is a framework that helps you to write Selenium tests. FluentLenium provides you a fluent interface to the Selenium Web Driver. FluentLenium lets you use the assertion framework you like, either jUnit assertions, Hamcrest or Fest-assert.

https://github.com/FluentLenium/FluentLenium

41 questions
0
votes
0 answers

Will fluentlenium pom.xml dependncy download all dependancies that it requires?

I am new to maven and dependency world. So I am changing my fluentlenium version of 0.10.2 to 0.10.9 pom.xml of test suite UTF-8
0
votes
0 answers

Create a TestServer with an already started FakeApplication

I've started integrating in some Selenium tests into the testing framework in Play. I have a class in which I define a lot of special config settings for a FakeApplication, then create that FakeApplication using: public abstract class…
jcreason
  • 857
  • 5
  • 15
0
votes
0 answers

how to find dynamic element without using xpath and css selector

I have to find the element "button-1510-btnIconEl", but the condition is, i have to find this element using Fluentlenium and without using css selector and xpath. Any lead for this.
0
votes
1 answer

GWT : Automate tests of UIs with Selenium/FluentLenium

I have such a big problem and I really need your help. Basically, I'm working on a project whose core technology is GWT and I have to make functional tests and the tests of UIs. In fact, I have also to use Cucumber the framework which is BDD-based…
AmineP90X
  • 33
  • 5
0
votes
1 answer

The right way to fill and test a web form in ScalaTest and FluentLenium

I'm trying to fill, submit, and test a web form in Play Framework, using ScalaTest and FluentLenium. It seems like it should be very straightforward, but I'm having all kinds of problems. First, part of the web form in question:
0
votes
0 answers

Using FluentLenium in Play to submit a form and test authentication

I'm trying to use FluentLenium in Play with Scala to test our web form authentication. But it seems that the browser instance is not preserving state (or even loading) once the authentication form has been submitted... so, we submit the username and…
Zaphod
  • 1,387
  • 2
  • 17
  • 33
0
votes
1 answer

Fluentlenium crashes on jquery in play framework

I want to write Fluentlenium tests but it crashes on jQuery. I use the standard integration into the play framework. I try to get the simple standard example to work. If I run test, get (most importantly) Caused by:…
nickik
  • 5,809
  • 2
  • 29
  • 35
0
votes
1 answer

Testing the effect of AJAX/POST on a page with Selenium - Element Not Found

This may be similar to 5660956, but I am doing a GET first... I think the key here is Selenium, hence the tags. Just in case it matters: I'm working in Java, using NinjaFramewor, FluentLenium and Firefox. It runs locally, but also on a headless CI…
Dan
  • 358
  • 1
  • 11
0
votes
1 answer

How to have a Selenium test locate elements generated by Angular?

I'm currently taking the angular tutorial using Wisdom framework as back end. As a consequence, I run end-to-end tests using Fluentlenium, as the wisdom framework doc states. My test for step 3, although dead simple, doesn't pass. Full test can be…
Riduidel
  • 22,052
  • 14
  • 85
  • 185
0
votes
2 answers

Chrome WebDriver not working while trying to test in Play 2

I am trying to test an Play 2 app with Fluentlenium. This is the code for one of the test cases: import org.junit.*; import play.mvc.*; import play.test.*; import play.libs.F.*; import static play.test.Helpers.*; import static…
0
votes
1 answer

Way to click on visible elements of all the enabled elements

Is there a way to click on only the visible of all the returned elements using Fluentlenium(similar to selenium)??? For example I have @FindBy(css = "div[class^='event-body']>button") public FluentWebElement hostMeeting; This will return may…
user2279894
1 2
3