Questions tagged [seleno]

Seleno is an open source project from TestStack which helps you write automated UI tests with Selenium.

Seleno is an open source project from TestStack which helps you write automated UI tests with Selenium. It focuses on the use of Page Objects and Page Components and by reading from and writing to web pages using strongly typed view models.

Project website

7 questions
3
votes
0 answers

TestStack.Seleno/Selenium, C#: Does finding elements have minimum, non overrideable timeouts?

I am using TestStack's Selenium wrapper Seleno for UI testing. I seem to have stumbled upon some weird behavior that I am unable to determine the source of. Say that I try to find an element that may or may not exist in the DOM: public void…
1
vote
0 answers

Method not found when calling Seleno

I'm new to automation testing. I'm trying to use Seleno for my project: Seleno: public static class BrowserHost { public static readonly SelenoHost Instance = new SelenoHost(); public static readonly string RootUrl = @"link to web"; …
evitta
  • 39
  • 4
1
vote
0 answers

Access webdriver object in Seleno

I am using Seleno for UI testing. Under the hood, it uses Selenium: https://github.com/TestStack/TestStack.Seleno I need to interact with a download pop-up for Firefox. A previous question's answer uses Selenium's webdriver: Access to file download…
Justin Homes
  • 3,739
  • 9
  • 49
  • 78
1
vote
1 answer

TestStack.Seleno TickCheckbox not working

I have 2 forms that I am testing using TestStack.Seleno. Both forms have a checkbox that is mandatory. The first form has (including the checkbox) 5 fields. I can use TestStack.Seleno to create a passing test with valid data. I set the checkbox like…
Ismail
  • 923
  • 2
  • 12
  • 29
1
vote
2 answers

How to use Selenium (or Seleno) to detect if a DOM element is displayed by Angular

When my button is clicked, the ng-hide directive will turn a hidden div to be visible on page. I am using Seleno to write UI test for an Angular application. I have checked the display css value on that element: var cssValue =…
Blaise
  • 21,314
  • 28
  • 108
  • 169
0
votes
1 answer

selenium not finding firefox - using teststack.seleno

My selenium tests are all failing on initalisation with this error. {"The system cannot find the file specified"} My initialisation code is really simple: public static class Host { private static readonly SelenoHost SelenoHost = new…
Jim
  • 14,952
  • 15
  • 80
  • 167
0
votes
0 answers

How do I select this element in Seleno/Selenium

I am trying to use Seleno (and therefore Selenium) to do some UI testing in my project. In my rendered page is the following link
Jason Coyne
  • 6,509
  • 8
  • 40
  • 70