Questions tagged [fluentautomation]

FluentAutomation is a simple, powerful automated testing framework for web applications. It can be used with Selenium WebDriver or WatiN to test all sorts of browsers and devices.

FluentAutomation is a simple, powerful automated testing framework for web applications. It can be used with Selenium WebDriver or WatiN to test all sorts of browsers and devices.

FluentAutomation is implemented using one of two supported automation providers - Selenium WebDriver or WatiN. Selenium is the preferred provider and the most developed. WatiN is provided as an alternative method of automation Internet Explorer

GitHub

31 questions
0
votes
1 answer

Issues interacting with elements when using PhantomJS and FluentAutomation.NET

I authored a couple of tests using SpecFlow, PhantomJS, Selenium and FluentAutomation.NET. They run fine on Chrome and FireFox, but when I run them on PhantomJS, they fail. The error message is: element is not currently interactable and may not be…
jessehouwing
  • 106,458
  • 22
  • 256
  • 341
0
votes
1 answer

Using SpecFlow, Selenium and FluentAutomation causing problems

I am currently using Specflow with Selenium and FluentAutomation, and am running into significant problems with maintaining state between steps in specflow. See my example code below: [Binding] public class RegistrationSteps : FluentTest { …
shenku
  • 11,969
  • 12
  • 64
  • 118
0
votes
1 answer

Fluentautomation with multiselect

I am having trouble selecting multiple values from a SELECT box via FluentAutomation. Sample test…
0
votes
1 answer

Using I.Expect.Text with fluentautomation

Does I.Expect.Text("sometext") require the In method with specified selector? I ask ask as some tests I've inherited don't have the In method appended, and our tests pass, even when I know that the supplied text does not exist on page. I have looked…
Paulwin
  • 93
  • 1
  • 10
0
votes
1 answer

Reuse browser instance across multiple tests in same class using FluentAutomation with MSTests

I am using FluentAutomation with MSTests. I need to be able to reuse the browser instance across multiple test methods in the same class. For example, the constructor or TestInitialize method will login to a url, then all the subsequent Test methods…
Vin
  • 6,115
  • 4
  • 41
  • 55
0
votes
1 answer

FluentAutomation instruct browser to navigate back

I can't find a way press the browser back button or to inject a script that navigates back using FluentAutomation. Is there any way to do this at all?
victorvartan
  • 1,002
  • 2
  • 11
  • 31
0
votes
1 answer

Retrieve Timings from Fluent

I'm building up a Fluentautomation script with a pathway to step through my application with testing. Is it possible to record timings between actions, rather than just getting the overall timing at the end? i.e. var TestChrome =…
Tim
  • 7,401
  • 13
  • 61
  • 102
0
votes
1 answer

Sometimes can get text but sometimes show "Unable to find element with selector"

I use var n = I.Find(("#CSS_path"); to find a element and click it.I want to compare the text inside element.So I tried to use var nt = n.Element.Text; and string name = n.Element.ToString(); to get the text inside.ToString() can't get it. So I use…
cherry
  • 21
  • 5
0
votes
1 answer

Is there a way to check is the button clicked with FluentAutomation?

I want to check the button is clicked or not use FluentAutomation. And there has two types about button. One is locked, it can't be change. Just like picture but it's HTML still is input. Another can click but I don't want to change it. I just want…
cherry
  • 21
  • 5
0
votes
1 answer

Is there a way to use I.Click to click a declared number?

Is there a way to use I.Click to click a declared number? It can't use I.Click("#searchBox", x, y); to click the button. It just can use like this I.Click("#ui table tbody tr(week) td(dayofweek) a"); The 'week' and 'dayofweek' is declared by…
cherry
  • 21
  • 5
0
votes
2 answers

Is there a way to get the HTML of an element?

I'm using the FluentAutomation version of Selenium, and I can't find any way to get the HTML of an element. I can get the text and attributes, but there doesn't seem to be any way to get the full HTML content, which I need for a certain kind of…
Joshua Frank
  • 13,120
  • 11
  • 46
  • 95
0
votes
1 answer

Using Fluent Automation, I receive a JSON.Net error

{"Could not load file or assembly 'Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from…
tichra
  • 557
  • 5
  • 18
0
votes
1 answer

FluentAutomation and Selenium 2.33.0.0

I'm getting the following exception when I try to run a test with FluentAutomation A first chance exception of type 'System.IO.FileLoadException' occurred in FluentAutomation.Core.dll Could not load file or assembly 'WebDriver, Version=2.25.1.0, …
Neil
  • 5,179
  • 8
  • 48
  • 87
0
votes
1 answer

FluentAutomation and selenium 2.32.1.0

I recently installed FluentAutomation with selenium 2.32.1.0 from nuget. However, When I try to open a page using the I.Open("http://") method I get the following exception: Could not load file or assembly 'WebDriver, Version=2.25.1.0,…
dalcantara
  • 1,613
  • 2
  • 21
  • 35
0
votes
1 answer

Scroll to element with FluentAutomation?

Is it possible to scroll to an element with FluentAutomation + Selenium, e.g. to click a button outside of the currently visible area? If so, how? From browsing the FluentAutomation docs, I can't see any support for this. The problem is that if an…
aknuds1
  • 65,625
  • 67
  • 195
  • 317