Tagged Questions
1
vote
0answers
22 views
How to unit-test Page Objects in a Selenium framework with PowerMock
I'm working an automation framework built on Selenium 2 and based on the Page Object design pattern. I am at the point where I want to start thinking about writing test suites for my code. Due to ...
0
votes
0answers
15 views
Arquillian and Selenium in mixed Container/Client mode
i am reading the tutorial on Arquillian's website
http://arquillian.org/guides/functional_testing_using_drone/
Under the paragraph of "Enabling Client Mode" they state that it is possible to mix ...
0
votes
1answer
13 views
Select all matching elements in PHPUnit Selenium 2 test case
It is simple to select an element by specifying its class, in PHPUnit Selenium 2 test case:
$element = $this->byClassName("my_class");
However, even if there are two items of my_class, the ...
2
votes
1answer
53 views
How to switch Firefox profile with Selenium - without instantiating a new driver?
Trying to find a way to switch the active profile in a Selenium Firefox driver. This question about multiple Firefox profiles states that creating and using multiple profiles is possible. However, ...
1
vote
3answers
66 views
test variable title with ID - selenium ide
using selenium IDE i testing my site
in some pages i have a link with variable ID
ex : ( http://yourorder.com/135046 )
every time user click on this link site take him to process page number ...
1
vote
0answers
96 views
Selenium test cases for input text field is not working
I am new to Selenium IDE and I need help in one particular case. I am trying to create a test case for a module in which, when I enter a text it searches in the database and then give results based on ...
0
votes
2answers
153 views
How do I run my NUnit test cases using Selenium to run against different environments?
I have written NUnit test cases using Selenium to test a web application. And I would like to run the same test cases against different environments (e.g. QA, Staging, & Production) What's the ...
2
votes
1answer
56 views
Diffing the DOM - how to write a unit test that checks that a script doesn't make any user-visible changes to elements on the page?
A Javascript plugin that I've been writing recently has various failsafes built in that tell either the whole plugin or parts of it to hide itself and die under circumstances where it can't function. ...
1
vote
2answers
33 views
Getting description of failed assertion
in my test method I have 3-4 assertions, when the test is failed how can I know which assertion was failed? here is my java code...
assertTrue(Utilities.SomeTest(driver, UserName, Password)); ...
2
votes
1answer
361 views
Visual Studio 2010 (win 7 x64) Selenium Unit Test Keeps Pending
I am trying for several hours to make a Unit Testing with Selenium driver for a custom website. The problem is, my first test case is always pending. I haven't written any other. I tried several ...
1
vote
0answers
133 views
What's the proper way to close a socket & avoid Errno 10054 with python/django
I'm working with django-selenium to run Selenium tests on a django app I'm involved with. This django app runs locally using Qt and a local webserver.
So to run tests I need to start the server for ...
2
votes
1answer
83 views
how to test ajax based site
I want to create automated tests for my site which is totall ajax based. The is developed using Spring MVC/Java. I have some knowledge of Selenium and I have also created some tests using Selnium.
...
-1
votes
1answer
215 views
Error with specflow in visual studio 2012 with <unitTestProvider>
I am using selenium, specflow and nunit to run automated tests with visual studio. The code was working with visual studio 2010. After I installed visual studio 2012, selenium and specflow again (I ...
0
votes
1answer
241 views
How do I run multiple Selenium tests with different required capabilties
I want to run the same test code:
e.g.
WebElement element = driver.findElement(By.name("q"));
element.sendKeys("mysql excel 2013");
element.submit();
...
0
votes
1answer
57 views
Selenium not connecting
Im trying to run some tests, and am running into a road block,
this is the start of the script where it is gettings caught.
from selenium import selenium
import subprocess
import time
import sys
...
0
votes
0answers
31 views
Combining several plugins for testing in Eclipse
I'm looking at automating testing at the moment. There are a few areas that would benefit from automation:
Webservices,
client applications (mobile applications for iPhone, Android and Blackberry),
...
0
votes
1answer
704 views
Selenium - Java Wait for page to load fails in test scripts
I create test cases in Eclipse IDE using JAVA with some Selenium scripts.
My Problem is that sometimes, Continuous Run of Test Cases produce error/failed test in the ...
0
votes
0answers
38 views
Using Selenium when coding on a remote server?
Ive started using selenium recently, and there is one thing i cannot find an answer to.
I connect to my dev server via winscp(ssh), it is a remote vps i have.
I understand that selenium will never ...
0
votes
0answers
119 views
How to use SetUpFixture attribute in a class with a Generic type
I'm trying to create some automation test using Selenium WebDriver and the main idea is to be able to run all the test in three browsers at the same time : Chrome,IE and Firefox.
I followed the ...
1
vote
2answers
104 views
Run setUp only once
My Python version is 2.6.
I would like execute the setUp method only once since I'm doing there things which are needed for every test.
My idea was to create a boolean var which will be set to ...
0
votes
0answers
56 views
CI reporter gem occasionally fails to define 'testcases'
There is no sure way to reproduce this, but here is my story/question
I have ruby selenium tests running via jenkins.
Occassionally I get this error, and the tests dont load.
0.00 tests/s, 0.00 ...
-1
votes
4answers
134 views
Selenium + JUnit. How DRY?
My situation below:
I have couple test cases:
user log on Site;
user open Home Page;
User see some information, is not so important, maybe some table or div, etc..
User go to HelpDesk Page.
User go ...
0
votes
0answers
92 views
Selenium - Python unit tests - thoroughly confused about where Selenium is looking for matching elements
I have a Selenium test that I'm running as a Python unit test. On the web page I am testing, I have two links and I am trying to test for the presence of each of them. Here is the very short code in ...
1
vote
2answers
148 views
Aggregate test using python's unit-test is running without test runner
I am having a problem in running an aggregated test suite of selenium tests using unit-test in python.
Below code is executing the test from another module without the testRunner being called.
When ...
0
votes
0answers
61 views
Running tests from Spring application
I have JUnit Selenium test class like
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/testContext.xml")
public class SearchTest extends VisibleTestBase {
@Test
public void ...
2
votes
4answers
152 views
Is it good practice to give html elements id attributes that are only to be used for testing purposes?
Suppose I have a form like so:
<form action="/foo" method="POST">
<input type="text" name="username">
<input type="text" name="password">
<input type="submit" ...
1
vote
1answer
348 views
Element not found blocks execution in Selenium
In my test, I try to verify if certain text exists (after an action) using find_element_by_xpath. If I use the right expression and my test pass, the routine ends correctly in no time.
However if I ...
0
votes
0answers
74 views
Recommended Unit Testing Systems for Grails? [closed]
I've recently started working with Grails and I've gone through the basics on getting started. However, I'm a bit unsure how to make an informed decision on a testing environment / system. There are ...
1
vote
1answer
99 views
Is it possible to use Selenium / PHPUnit outside the browser?
Right now this is my workflow to write tests for a website:
Record using Selenium IDE plugin in Firefox
Export Test Case As >> PHP (PHP Unit)
Run the tests on a Windows machine that has PHPUnit ...
0
votes
2answers
108 views
Programatically retrieve count of javascript errors on page
I'd like to write a test case (using Selenium, but not the point of this question) to validate that my web application has no script errors\warnings or unhanded exceptions at certain points in time ...
0
votes
1answer
441 views
Selenium RemoteWebDriver memory issues
I'm running a Selenium Standalone Server, version 2.25.0
I run a program in c# executing the driver by:
DesiredCapabilities capabilities = DesiredCapabilities.HtmlUnit();
...
0
votes
1answer
42 views
Can I get at my application code from inside a Selenium test?
I'm writing unit and integration tests for a WordPress site, using PHPUnit and Selenium. There's a useful WP test library for PHPUnit, used by extending a special WP_UnitTestCase instead of ...
0
votes
1answer
170 views
Selenium — wait for event
I am new to Selenium and i need to create a test case , which is having a facebook login.
So how can i force the test user for login with facebook for the test to continue.
here is the procedure i ...
0
votes
1answer
63 views
How to do the unit testing for the simple silverlight application
I am having simple Calculator application. In this i have one Method. I don't know how to test that method nu? Can you please any one help me.
Thanks in advance
2
votes
1answer
186 views
How do I structure my tests with Python unittest module?
I'm trying to build a test framework for automated webtesting in selenium and unittest, and I want to structure my tests into distinct scripts. So I've organised it as following:
base.py - This will ...
1
vote
1answer
237 views
Using Test::Unit::Autorunner, no method error for “assert_true”
NoMethodError: undefined method `assert_true' for #
This is the same for all my assertions. Test runs but fails to assert.
sample test that fails to assert
class Cwy001 < ...
0
votes
0answers
361 views
Git: pre-merge hook?
I have a pre-commit hook that stops any commits directly to master. I want all changes to be committed to a separate branch then merged into master, only merges to master should be allowed and only if ...
0
votes
1answer
274 views
'Element is no longer attached to the DOM' after drop down selection refreshes the page
I'm writing a Selenium unittest which selects an option from a dropdown menu triggering a page refresh (not a full refresh, but JS changes the DOM) to show data based on that selection. My testcase ...
0
votes
1answer
526 views
Maven can't see tests
I'm using maven to run my selenium tests but it doesn't find this tests i put it under src/test/java. My test class is named SeleniumTest.java so it follows convention (*Test.java) here's the code :
...
1
vote
1answer
90 views
How can Selenium see a record that I can't find from a debugger?
I am creating Selenium tests for my App.
I can create a new user, but I can't seem to figure out how to have it deleted from the database.
After the tests run successfully the first time, subsequent ...
0
votes
3answers
430 views
TestNG @Factory and group-by-instances and preserve-order
I'm trying to use for the first time TestNG with @Factory and for me doesn't work, I'll say you why.
I have a class called Extend in which I have some tests, "launch site", "login", "check if the ...
0
votes
1answer
348 views
Unable to locate using find element by link
Newbie in testing. I generated a test case using Selenium, and then exported it as a Python script. Now, when I try to run that in terminal, I get following error:
raise exception_class(message, ...
4
votes
1answer
407 views
Sauce labs alternative
We're looking into automating our web ui using either Microsoft's coded ui tests or Telerik TestStudio framework. I would love to run our tests using a service like Sauce Labs however, sauce labs ...
0
votes
2answers
1k views
Selenium webdriver in python: Re-using same web browser across testcases
Python newb here.
I'm trying to re-use same browser throughout my testcases.
However, I cannot figure out how to pass global variable to make this work.
Currently,
I have a main.py that looks like ...
3
votes
4answers
6k views
First steps with Selenium and jUnit - any good tutorials? [closed]
Anyone knows a good tutorial for a beginner in Selenium and jUnit ?
I already have a background in unit testing and acceptance testing (RSpec and Capybara on Rails 3), and now I'm starting this new ...
6
votes
2answers
445 views
Best practice for organizing selenium tests and unit tests
So I am experimenting with the introduction of selenium unit tests in django 1.4 in a couple of projects I am working on.
The standard way to run my unit tests are simply to do ./manage.py test and I ...
3
votes
3answers
899 views
How to unit test GWT+SmartGWT?
I am Unit testing on the client side of a GWT+SmartGWT application.
First I tested with GwtTestCase. Too long for unit testing a huge application. GwtTestSuite doesn't help. It still takes too much ...
0
votes
3answers
846 views
Selenium RC is not working with latest google chrome
I am using selenium RC version-2.21. Everything was working fine with
old google chrome. Then it gets auto updated. The problem is when i
run the test cases only the command window(the window where ...
-1
votes
1answer
81 views
What is your Testing Stack on your Web Application? [closed]
I would like to know about the testing software to test your web application. For me, I use
PHPUnit for PHP Unit test, Try to use QUnit for Javascript testing
For Web User Interface, I use Selenium ...
0
votes
2answers
210 views
Workaround Firefox Update Addons
I would like to know how to get rid of the many update screens (addons compatibility,....) in firefox, when it was updated. I'm using WebDriver in Java.
It's no problem for me to use a custom firefox ...

