Selenium Remote Control - Answer to UI level functional test Web automation

learn more… | top users | synonyms

1
vote
1answer
19 views

How to set method level timeout for selenium test methods using @ tags. by overriding the framework level timeout

I need to override the existing framework level timeout set for all the test scripts as, @Rule public Timeout timeout; public String methodTimeout = null; The default timeout for all the tests ...
1
vote
2answers
41 views

How to test the ads displayed on UI, using Selenim WebDriver/RC

How to test the ads which displayed on web page. This ads are injected thorugh some plugins. When i record using IDE, it displays the adds on Firefox browser. But when i run the webdriver selenium ...
1
vote
2answers
28 views

How to check if a text is in web page in Robot Framework and Selenium

I'm currently creating an automation test for a website and I want to check if a text(s) is in the page. I could use the keyword 'Page should contain' to check; however, I want it to be a little more ...
0
votes
0answers
6 views

using javaascript-xpath engine, elements are not identified which have “style” attribute in xpath

currently using selenium standalone 2.21. i am executing my tests using RC on IE browsers.All my object locators are xpaths.Due to this the execution is slow. I then injected the xpath engine ...
0
votes
0answers
42 views

Selenium - codeception - chrome issue

I get the following errors in random when running test on chrome using codeception in selenium server: WebDriver\Exception\UnknownError: The current platform is not supported: LINUX ...
0
votes
1answer
87 views

Retrieve 5th item's price value using selenium webdriver

Say I have multiple price quotes from multiple retailers, how will I retrieve the 5th value from a particular retailer - say Target or Walmart ? I can get to the 5th entry using the matching image ...
0
votes
1answer
63 views

How do I use Selenium in Perl to click a checkbox with a dynamic value next to a known string?

Here's some hastily-scrubbed sample source from my page: <tr><td nowrap><input type="checkbox" name="enrollments" value="1478">meta</td></tr> <tr><td ...
0
votes
1answer
119 views

Firefox bug with Selenium - Can't access dead object

I've tried to run my tests with Selenium 2 and Firefox 19. One of this tests causes an error "ERROR: Command execution failure. The error message is: can't access dead object". I'm reading about it, ...
6
votes
1answer
61 views

How to verify that the element Y is present between element X and Z in UI using selenium java

How to verify that the element Y is present between element X and Z in UI using selenium java. Eg: There are three xpath's in a same page. like this "table/tbody/tr[1]/td[2]/div/div[5]/label" ...
0
votes
0answers
40 views

Please Answer: How to set Selenium Ide Recording On for the JUnit running test case output in Mozilla Firefox

I am trying to record the output of the Test case running as JUnit Test through Selenium IDE. I need to use the recorded script (through SELENIUM IDE) for the Load Testing purpose on Browser Mob.I ...
1
vote
1answer
98 views

Selenium Server and Java

I'm trying to automate my selenium script by using java. The command that I'm trying to execute is: /usr/bin/java -jar /javalibs/selenium-server/selenium-server-standalone-2.32.0.jar -htmlSuite ...
0
votes
1answer
350 views

org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms

I'm trying to run a Junit Test case which i exported from Selenium IDE. Im getting above exception.I'm using Windows XP,Firefox 20.0.1,and using selenium-server-standalone-2.28.0.jar.Upon run, a blank ...
0
votes
1answer
113 views

com.thoughtworks.selenium.SeleniumException: ERROR: Command execution failure

com.thoughtworks.selenium.SeleniumException: ERROR: Command execution failure. Please search the user group at https://groups.google.com/forum/#!forum/selenium-users for error details from the log ...
0
votes
1answer
90 views

How to click on an hidden drop down menu element using webdriver, which is not a select

I want to click on delete which is in the sub menu. I tried the below code, but nothing happens. wd_handle.execute_script("document.getElementById('optionPanel').hidden=false;") ...
-1
votes
0answers
17 views

Ace Editor automation using Selenium RC

How can we interact with ACE editor using selenium RC? Basically I have to clear the ACE editor and fill it with a string of characters.
1
vote
0answers
20 views

getAllWindowNames() method of DefaultSelenium class not listing names of all tabbed windows?

I am writing a sample program to automate the tabbed windows. Please have a look at my sample program: import com.thoughtworks.selenium.DefaultSelenium; import com.thoughtworks.selenium.Selenium; ...
0
votes
2answers
102 views

WebDriver Chrome Browser: Avoid 'Do you want chrome to save your password' pop up

Every time my webdriver tests login into the application, 'Do you want chrome to save your password' pop up appears.. Is there a way to avoid this?? Please help. Thanks, Mike
0
votes
1answer
114 views

Regular expression for xpath in selenium java code

Selenium java code for regular expression. Xpath = "//*[@id='gritter-item-6']/div[2]/div[2]/p" In above xpath 6 is varying, any one help me how to solve this problem Please give me the solution for ...
0
votes
0answers
13 views

SeleniumRC stops responding on ending rdp sessions

Selenium is a great tool if not infuriating. I've got some tests on a remote machine that can run perfectly if I keep my RDP session open, but about 30 mins after I close my session (a.k.a. hit the x) ...
0
votes
1answer
16 views

seleniumRC - where to unpack and have the Java program running from?

The instruction for seleniumRC say to download the zip file and extract the server "in the desired directory". For a Linux (Ubuntu) user what is the 'desired directory' to unpack these files into? ...
0
votes
1answer
38 views

how to generate dynamic asserts in nodejs soda

I have below code in nodejs for selenium using soda script. If you see my script below, look for verifyData() There is row testing happening for fixed columns values. I want to generate these asserts ...
0
votes
1answer
44 views

xpath matching elements whose attributes have no value

I am looking at some HTML as follows <tr> <td nowrap><a href=" ... " >some link</a></td> <td nowrap>col2</td> <td nowrap>col3</td> ...
0
votes
1answer
20 views

Query regarding DefaultSelenium class argument constructor's arguments?

I am writing my first automation program with Selenium RC & i have a couple of queries. Please have a look at the sample code: import com.thoughtworks.selenium.DefaultSelenium; import ...
0
votes
0answers
24 views

Executing Python test case in selenium on various IE Versions

Is there any way to specify a particular browser version for the execution of the test case below? I have both IE7 and IE8 and seem to only be able to specify iexplore. Is there a version parameter? ...
0
votes
0answers
31 views

xul drag and drop function doesn't work Firefox 17 ESR but works in Firefox 10 ESR

I am having a problem with a xul drag and drop function designed for selenium RC and selenium IDE. It works in Firefox 10 ESR but does not work in Firefox 17 ESR. the code used for the draganddrop ...
0
votes
0answers
39 views

Selenium RC and PHPUnit, crash when try use isElementPresent function

I have problem with Selenium RC + PHPUnit + Symfony. When I try use isElementPresent (element didn't exist), I have exception: From Google Chrome: RuntimeException: Invalid response while accessing ...
0
votes
0answers
56 views

Selenium RC Timeout

I am new to test unit stuff. My configuration is a windows vista combined with phpunit and selenium rc (selenium-server-standalone-2.32.0.jar). I have tried loading a testcase file on my prompt ...
0
votes
1answer
74 views

Selenium RC how make screenshot of html code while tests execution?

I use selenium RC. My tests are failed after waiForPageToLoad() method. It doesn't find element on the page. I see on my browser what page is still loading while waiForPageToLoad() "said" that page is ...
0
votes
1answer
171 views

Issue integrating Selenium test suite using jenkins

I am trying to integrate Jenkins with Selenium. I have prepared the following command: java -jar "D:\CI\TWCP\Selenium plugins\selenium-server-standalone-2.32.0.jar" -htmlSuite *firefox ...
0
votes
1answer
101 views

Running Selenium IDE from batch file ignores user-extensions.js and selblocks. Why?

Hi I would really like to run a testsuite via the Selenium IDE, which I have started up with some custom commands in user-extensions.js and the SelBLocks extensions (for flow control) with no success. ...
0
votes
2answers
118 views

Jenkins and Seleniumhq configuration

I'm trying to set up a simple Selenium test in Jenkins. My OS is Debian GNU/Linux 6.0.7 (squeeze), desktop version (64-bit). I uninstalled the supplied browser iceweasel and intalled Firefox with ...
0
votes
1answer
46 views

How to increase tests stability with Selenium RC

I am using seleniun RC for automation tests scripts. I use selenium.waitForPageToLoad(DEFAULT_TIMEOUT); but it is not stable and 50% of the time my tests fail because the next element after the ...
1
vote
1answer
101 views

impossible to run a test through the selenium RC on chrome

I run a test through selenium RC and it works fine. I use this command line: java -jar selenium-server-standalone-2.32.0.jar -firefoxProfileTemplate "SeleniumProfile" -htmlsuite "*firefox" ...
0
votes
0answers
44 views

Not able to run selenium RC scripts in Firefox 11 and how to upload attachment in IE/FF 11

I am trying to run selenium remote control scripts in Firefox 11 but the browser window opens with no further action i.e, not opening the URL. I am able to run it in other browsers and lesser ...
1
vote
1answer
73 views

Selenium, PHP Unit and Firefox on Ubuntu EC2

I am attempting to get PHPUnit tests running with Selenium. I start up selenium: java -jar selenium-server-standalone-2.32.0.jar & Run my tests: phpunit --verbose suite/TestSuite.php ... ...
1
vote
2answers
205 views

How to automate username/password fill for firefox authentication popup using selenium IDE

I got a selenium script that works, but when it is opened with selenium-rc it is in a new instanced which requires me to re-login. Is there a way to automate filling in the username/password for the ...
0
votes
1answer
197 views

How to run Selenium IDE testcase.html with Firefox using Windows CMD

I've read up on how to execute the selenium IDE testcase.html using selenium-server RC. Here is how I have it setup... C:\Selenium_Server\selenium-server.jar C:\Scripts\Q2Nightly.html If I open ...
0
votes
1answer
59 views

Codeception: How to continue testcase on url of previous testcase?

I am using codeception with selenium2. And developing a data driven testing for which I require the url opened by first testcase (cept file) to be used by second testcase (cept file), that is, the ...
0
votes
2answers
68 views

TestNG Groups: Can we include two group names and create one group to run tests?

I have following testng test methods. @Test(groups = {"tsg1.0","smoke"}) public void testLoginWithInvalidCredentials(String usernameValue, String passwordValue){ /*Print something*/ } ...
0
votes
2answers
120 views

Selenium RC / Python / JavaScript .aspx / Loop Statement

I have been teaching myself Python over the last few months. My first project is a browser driver test case using the Selenium RC web driving framework (Not importing webdriver in my project though, ...
-3
votes
1answer
171 views

What is the difference between selenium standalone server and selenium-webdriver [closed]

I am new learner of Selenium and I am confused about "selenium standalone server" and "selenium-webdriver". Please help me.
-1
votes
1answer
65 views

Should i need to use seleniumm standalone server with Selenium IDE with Ruby language

I am new learner of Selenium IDE and I am going to write test cases with selenium IDE with Ruby. I have read Selenium standalone server is used with Java. Should i need to use Selenium standalone ...
0
votes
1answer
28 views

Using multiple sites in Selenium RC with PHPUnit

I'm trying to automate a user scenario that involves two websites with no common base url. How can I achieve this? Right now I have unsuccessfully tried altering global variables but they are reset ...
0
votes
1answer
188 views

How to start server for Selenium grid Java Maven setup

I setup Selenium framework with Maven Java. So all dependencies are storing in POM.xml Here I got doubt.. How to start server java -jar selenium-server-standalone-2.18.0.jar -role hub .. Should I ...
1
vote
5answers
292 views

Selenium WebDriver reliable tests

I know that this question was asked many times before, but I still couldn't find a solution that works for me. When I run my tests with Selenium WebDriver most of the times they fail with ...
1
vote
1answer
76 views

phpunit selenium usage

My question is about phpunit+selenium usage. The standard usage of this union is class BlaBlaTest extends PHPUnit_Extensions_SeleniumTestCase {... } OR class BlaBlaTest extends ...
0
votes
1answer
69 views

Moving from Selenium IDE to what?

I have been given the following job from my boss: three years ago a former employee created selenium tests for our project and committed them via eclipse now I have to update the tests due to the ...
1
vote
1answer
55 views

How to Verify a Page is loaded Succesully

Hi I have one url which will open the Page in XMl format. Now there is no any Style information for the page so when I am trying to use assertTextPresent(); for the verification of a text on the ...
0
votes
3answers
296 views

Read the rows in excelsheet and populate in webpage text box

Can anyone please suggest me how can I read an excel-sheet in my local-drive say"C:\company_names.xls" and populate into the text boxes present in a webpage. I will explain the test case scenario as ...
0
votes
2answers
252 views

Dropdown click not working in Selenium RC

I am trying to automate test scripts in selenium. Scenario of the activity to be automated: It should open automatically a page URL first. Click on the left navigation. The page then gets ...

1 2 3 4 5 24