Tagged Questions

0
votes
1answer
33 views

Running tests using firefox using selenium grid

I have tests written in vb.net and selenium. I configured selenium grid So I may run several dll's together using selenium grid. Using the following wont make the session run. using ...
0
votes
1answer
84 views

Selenium RC in C# How to Validate Page Source Code

Hello I've been assigned a QA ticket to validate a javascript code snippet on a page. The best way of doing this of course is to view source on page and look for the code. However I have to do this ...
0
votes
0answers
104 views

Selenium RC Uploading a file

How to upload a file using selenium RC, Am using google chrome to run automation,as my application is not supported on firefox 3x 1)i tried with type command,On click of upload button file upload ...
1
vote
0answers
183 views

Selenium RC gives Error-Object [object HTMLIFrameElement] has no method 'getCurrentWindow' while running the test in google Chrome

I am using Selenium RC and Chrome when i run the test it gives me this error error(1340708572726): Unexpected Exception: Object [object HTMLIFrameElement] has no method 'getCurrentWindow' However ...
0
votes
1answer
285 views

How to upload file (with raduploader) using selenium RC?

I am trying to upload a file using selenium. but the problem is my upload field is not like <input type="file".....> [where i can directly say "selenium.type("xpath ","file path") ] but ...
0
votes
1answer
130 views

Uploading a file using Selenium

How do I upload a file using Selenium tool in automation testing? I tried with the following code: selenium.attachFile(//*[@id='file-uploader']/div/div[1]", "C:\\Users\\Public\\Pictures\\Sample ...
0
votes
1answer
144 views

Workaround for latest Selenium unsupported “onload dialog”?

The Selenium Reference documentation says "Selenium does NOT support JavaScript alerts that are generated in a page's onload() event handler. In this case a visible dialog WILL be generated and ...
1
vote
4answers
307 views

How can I press the alert ok button programmatically?

How can I press the OK button in a JS alert programmatically? What I want to do: every time after the alert is created, the OK button is pressed. This is for a UI test using Selenium RC. Also, I ...
0
votes
1answer
155 views

selenium runs the same method more then once

i have started with selenium few weeks back. i have designed my test this way using @BeforeClass i am creating a object and calling a method of class which is opening the browser and performing a ...
0
votes
1answer
161 views

How to automate interaction with Windows file explorer using Robot Framework?

I am writing robot tests for web testing using Google's Robot Framework with SeleniumLibrary (a test library) , one of my test involves uploading a file from the desktop by clicking on a"Browse" ...
0
votes
1answer
193 views

Testing Highcharts with selenium

Is it possible to test highcharts in a webpage using Selenium? I am currently using Selenium-rc and perl to test a webpage.
0
votes
2answers
186 views

testing using selenium-rc in grails

my project is failing the selenium tests. The seleniumconfig.groovy has the following code: selenium { slow = true singleWindow = true browser = "*iexploreproxy" url = ...
0
votes
0answers
64 views

Selenium-rc plugin using grails

Can anyone help with using selenium-rc using grails? i have used selenium using java but had no problem writing the code and launching the browser. but is the source code of my project required when ...
0
votes
1answer
140 views

Find xpath and get the value from anchor tag in selenium

I have been working on java project which needs the selenium testing tool for running the test class. As per the requirement, I need to know how to write the xpath, and how to get the value (goodluck) ...
0
votes
2answers
93 views

Value Loading from a drop down into other textbox

I uses the selenium for GWT UI testing. It is working properly. But it is unable to load the drop down in textbox. for example : When I search "test" in box , it provide me a drop down with a list of ...
0
votes
1answer
137 views

How can I run individual test cases against a locally running Selenium server?

I found a project called Selenium Zoetrope that runs PHPUnit tests on a Selenium server and records video of the test using ffmpeg (see this blog post for more details). I'd like to adapt the scripts ...
1
vote
2answers
158 views

Internet Explorer will not launch new windows during test

I'm currently having a problems with a window not coming up during tests in Internet Explorer. I'm using Selenium-RC 2.6.0, programming my tests in C# and launching them using NUnit. All of my ...
0
votes
2answers
515 views

Getting rid of JQuery DatePicker in a Selenium test

I am writing a Selenium test to populate a date field on a webpage. The field is associated with a JQuery Date Picker. When I use the 'type' function to enter the date, the picker pops up. However, I ...
1
vote
1answer
232 views

Selenium: Storing screenshots with selenium grid

I have run into an issue where I am trying to launch many tests at once(using html suites) they launch find, but the issue comes in when selenium is taking the screenshots that are in the html tests ...
0
votes
1answer
1k views

Selenium in -browserSessionReuse mode launchs a new browser

I'm trying the -browserSessionReuse Selenium mode to speed up my tests but i've noticed a strange behaviour. The purpose of this mode is avoid the time wasted opening browsers between tests, and this ...
0
votes
1answer
131 views

Structuring Selenium RC within a two-war project?

I have a project which needs to deploy multiple wars on a tomcat instance. My first thought for structuring selenium is to create a downstream jenkins build that runs selenium tests against some fixed ...
2
votes
2answers
1k views

C# Selenium RC - How to test a jQuery button click?

What is the correct way to run a jQuery .click() in a selenium test? The element being clicked is a hyperlink. HTML: <div id="buttons"> <a class="button" id="btnRun" ...
0
votes
1answer
122 views

waitfornottext not present in selenium rc

I am testing using Selenium RC but most of the waitforNottext etc are not present in it. Any idea why? Am I missing something
4
votes
1answer
222 views

Newbie question about Continuous integration and selenium tests,

I'm very new to C.I. but I have recently inherited a project where Team City has just been implemented and I'm slowly getting my head around it. One thing we would like to do is run some Selenium ...
1
vote
3answers
413 views

Why can't Selenium RC see a site on virtual machine

I'm having trouble getting Selenium to see sites hosted on a virtual machine. The following test causes an error, and I have no idea why: <?php require_once ...
2
votes
3answers
3k views

Selenium vs XmlUnit+HttpClient for web REST API testing

I need to test web API functions in REST format. Currently using Selenium RC for functionally testing the website. And using XmlUnit and HttpClient to functionally test our REST API. But it seems ...
0
votes
1answer
421 views

selenium RC running on solaris error when opening firefox:symbol g_slice_set_config: referenced symbol not found

I am runing selenium-RC in solaris to launching web automation testing. In fact, I have used selenium in windows with no problems. And it works. But now, I want to make automation testing on solaris ...
0
votes
2answers
55 views

How to detect if a URL fires upon loading a page

We're trying to validate if a URL fires upon loading a web page. Is there a way to do this programmatically using Selenium RC? The event does not appear within the page HTML or DOM. Thanks.
0
votes
1answer
278 views

Configuring server startup of SeleniumRC in NetBeans

I want the logs from the Selenium Server Console write to file. I know how to do this if i start server frome console (cmd.exe) java -jar selenium-server.jar -log logfile.txt But i run selenium ...
0
votes
1answer
666 views

selenium-rc Unable to connect to remote server

I've run into a weird problem yesterday. I am using selenium-rc along with C# to write test scripts. For the first time, yesterday, I started getting the error "Unable to connect to remote server". It ...

1 2
15 30 50 per page