Selenium is a portable software testing framework for web applications. It provides a record/playback tool for authoring tests without learning a test scripting language and a test domain specific language (DSL), to write tests in a number of popular programming languages.

learn more… | top users | synonyms

0
votes
0answers
3 views

Selenium create empty Date object

I've problem with simple method. I wrote something like this: Selenium.prototype.doPutDateToInput = function(locator) { var tmp3 = new Date(); var strDate = tmp3.asString(); ... } Using ...
0
votes
0answers
10 views

Unable to drag and drop element using Selenium Web driver ( Python )

On trying to perform drag and drop using selenium webdriver, the following traceback is thrown . File ...
0
votes
1answer
22 views

I cant run my Maven Project - no main class found

I've never used Maven or Selenium, so I have quite simple question: I've followed this tutorial: http://docs.seleniumhq.org/docs/03_webdriver.jsp So, after mvn clean install and importing my project ...
0
votes
0answers
9 views

Paremetrization/Sel-IDE and .js file not outputting UTF-8 correctly

I decided to parametrize my tests and added some cyrrilic data in a .js file. this is the code of the file: var names=new Array ('Китара','Хладилник','Телевизор','Телефон','Микровълнова ...
1
vote
0answers
7 views

How can I make Selenium tests inside my JSF project?

I have quite big JSF 1.2 project and I want to write some integration tests to it. The perfect situation will be, when I can run these tests from my project and it opens my browser and makes all the ...
1
vote
0answers
11 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 ...
0
votes
1answer
14 views

webdriver 'Element not found in the cache, perhaps page has changed' [webdriver][python]

I have created a test to create a ticket. When I click 'new ticket', it brings up a popup form. I fill in the title, and body, and click 'save and new'. At this point I created a loop. While i<10, ...
0
votes
1answer
11 views

Switching Frame in Selenium Webdriver, C#

I am getting this error using Selenium: An unhandled exception of type 'System.InvalidOperationException' occurred in WebDriver.dll Additional information: '[JavaScript Error: "a is null" {file: ...
0
votes
2answers
14 views

how do I get around this error 'webelement does not support indexing"[webdriver][python]

I am doing an xpath search page = driver.find_element_by_xpath('//td[@class="mceIframeContainer mceFirst mceLast"]')[1] This gives me the first class item which I need, in firebug, but apparently ...
0
votes
0answers
11 views

selenium mobile safari driver iPad

I am using selenium grid with ios-server-0.6.0.jar and iWebDriver, and I am trying to test a web application on mobile safari using an xCode iPad simulator. I am clearly missing something here. I ...
0
votes
0answers
6 views

Error with a certain JavaScript file when running test case on Selenium and HtmlUnitDriver but not with FirefoxDriver in Java

I ran into an issue running a test case in HtmlUnitDriver with Selenium and Java. And the problem seems to occur in the following JavaScript file, is it a bug or is there a function I need to invoke ...
0
votes
0answers
14 views

Are there defined semantics when expiring and then setting an HTTP cookie in a single response?

Using a third party service, a cookie is being both deleted/expired and set in the same HTTP response: Set-Cookie:flash=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; domain=.example.com ...
1
vote
0answers
7 views

Run Cucumber Features in Parallel using parallel_tests gem

I am using Selenium locally to run two .feature files. Both pass locally. Neither of the tests interact with a db (nor will future tests). I would like to use the parallel_tests gem to spin up two ...
0
votes
0answers
17 views

Chrome Driver not handling Alerts and constantly showing a notification about background apps when running selenium test

Running selenium tests using chrome driver, everytime the browser starts up I'm getting a notification balloon about added persistent background apps and then the test hangs it doesn't even appear to ...
0
votes
0answers
11 views

Selenium Python Tear Down for Safari. How do you handle this?

So my setup for running Safari .py tests is a little different than those for Chrome and FireFox (examples below). That being said, the tearDown for Safari must be different, but I cannot find any ...
0
votes
1answer
18 views

Is it possible to take a screenshot of the whole page with Selenium/Capybara?

PhantomJS has the option of taking a screenshot of the whole page (not just the current viewport). Is there any way to do so using Selenium? I am running the Cucumber/Capybara tests headlessly, using ...
0
votes
1answer
18 views

Stuck Installing Selenium Server for Python

I am trying to use the Selenium standalone server with Python. However, when I type "C:\Program Files (x86)\Java\jre7\bin\Java.exe" -jar selenium-server-standalone-2.32.0.jar into the command ...
1
vote
0answers
23 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
1answer
27 views

Selenium Firefox Profile Path not taken into account

I just want to test locally. With Internet Explorer it works. With Firefox, I get a timeout on line driver.FindElement : var capabilitiesInternet = new OpenQA.Selenium.Remote.DesiredCapabilities(); ...
0
votes
0answers
35 views

What would be the java equivalent of this Sikuli command?

I'm trying to convert a sikuli script written in Sikuli IDE to Java in eclipse. How can I convert the below line to Java ? type(text_field.png, "sampletext" + `n`) Here is my code public ...
0
votes
0answers
19 views

How to add addons using Selenium WebDrvier

I have to test some ads on the Webpage, this adds will be displayed, when i install the ads.exe file (internally it will add firefox add-on) to the Firefox browser. When i run the script using ...
3
votes
1answer
24 views

How to set Google Chrome in WebDriver

I am trying to set chrome as my browser for testing in webdriver and set the chromedriver.exe file properly but still i am getting below error: org.openqa.selenium.WebDriverException: The path to the ...
0
votes
0answers
12 views

Unable to run the script in emulator from selenium?

I have designed a script with the help of selenium and tried running the same with emulator. I am able to view the website manually in the emulator but unable to execute the script from selenium. When ...
1
vote
1answer
26 views

issues in running selenium in internet explorer

Hi I am trying to run my selenium webdriver on IE9. WebDriver version : 2.32.0 IE:9 IEDriverServer_win32:2.32.3 windows7 Below is my code: File IEDriver=new ...
0
votes
1answer
25 views

Text property on selenium web element is empty even though I can inspect it with Visual Studio

Without posting pages of C# code and markup, has anyone got a reason why this code var link = _driver.FindElement(By.Id(field + "Field")); var id = link.GetAttribute("id"); var text = link.Text; ...
0
votes
0answers
16 views

NoSuchWindowException after Close Window

I'm using robotframework with the Selenium2Library. And i've been having some trouble on handling popup windows in IE8. Try Popup Open Browser To PageXYZ Click Element XYZ Select Window ...
1
vote
0answers
8 views

Selenium IDE click at x,y coorinates on the visible page

How do I get selenium to click at x,y on the visible webpage - I don't care if there is an element there or not - just click there anyway regards derick
0
votes
1answer
21 views

Get scrollTop, scrollLeft etc. from element with selenium

In a Python/Django test for an element, that is scrolled via scrollTop, I want to get the value of scrollTop. In JavaScript I get this value via element.scrollTop In Python I tried the following: ...
1
vote
0answers
13 views

Limit memory usage of phantomjs using selenium webdriver?

I'm running phantomjs in Remote WebDriver mode with phantomjs --webdriver 8910 and then getting many pages using the Selenium python bindings with something like: wd = webdriver.PhantomJS(port=8910) ...
0
votes
1answer
23 views

Selenium node failing to run IE or Chrome web drivers

Here's simple batch file I wrote to start the node for selenium grid set webdriver.ie.driver=C:\selenium-server\IEDriverServer.exe echo %webdriver.ie.driver% set ...
0
votes
1answer
40 views

my xpath is not working

I am trying to grab data from something that looks like this: <html> <table> <tr> <td> <div> <tr> <td> <div> I think this is ...
0
votes
2answers
42 views

Unable to launch Internet Explorer through Webdriver

I've downloaded IEDriver and tested both 32 and 64bit versions (I am running 64bit Windows 7) and I included the folder containing the EXE to path in environment variables. I've restarted Eclipse and ...
0
votes
0answers
23 views

Python Selenium tests not working for Chrome like they are for FireFox

I have taken identical .py files, with the self.driver = webdriver.Chrome() for Chrome and self.driver = webdriver.Firefox() for Firefox. I run them from the command line using WebDriver. The FF .py ...
-3
votes
0answers
13 views

Selenium RC Python script runs fine for FireFox but not in Chrome [closed]

I have taken identical .py files, with the self.driver = webdriver.Chrome()
1
vote
1answer
40 views

Access element in default content after switching to iframe in WebDriver

I am practicing with Webdriver in running basic tests, and this specific test is to send an email through Gmail and then assert that it's been received. I'm using the new version of Gmail where the ...
0
votes
2answers
48 views

Random data for test automation in python

I am using unittest and selenium to automate my browser testing. How would I go about making a test which I can run multiple times, where a user creates a ticket. The ticket has to has a title name, ...
1
vote
2answers
32 views

What XPath to select only non-taged text inside div. Selenium. Java

I want to select only the text "only this text" from the snipet below using XPath (in Java) but that text is random and I don't know what is written there. <div class="A"> <input ...
0
votes
1answer
12 views

TestNG - @DataProvider annotation not working in Eclipse IDE?

I am Using TestNG with Selenium WebDriver. I am trying to get the 'dataprovider' annotation working in my Eclipse IDE. However, after adding the below annotation, Eclipse displays the following ...
0
votes
1answer
25 views

difference between thoughtworks and openqa selenium

What the difference between openqa.selenium and thoughtworks.selenium? How they compatible with each other? There is no class Selenium in package openqa.selenium, but there is class WebDriver. I want ...
1
vote
0answers
27 views

Selenium in a web service - jar not loaded

I tried to implement a web service in a bottom-up manner. First I created a dynamic web project and implemented a function that uses selenium. I then added the selenium-server-standalone-3.23.0.jar to ...
0
votes
2answers
43 views

Page loads and the item is not found

I test some site. Just only try put some text into input field (near Site URL:). I use selenium. My code throw exception. Please, tell me why? IWebDriver driver = new FirefoxDriver(); ...
0
votes
1answer
11 views

Why I get GridException when trying to open a website using Selenium

I am new to selenium. This is what I did: I started a standalone selenium server on cmd prompt. I ran below code, for both webDriverWay() and seleniumWay() I get error like below. In both cases I ...
1
vote
1answer
42 views

why is selenium webdriver not finding my element

https://www.mykplan.com/participantsecure_net/TermsAndConditions.aspx I am doing find by id/xpath/name and they all fail for the accept button. Here is my latest effort ...
0
votes
0answers
25 views

selenium in a web service throws java.lang.NoClassDefFoundError exception

I created a dynamic web project, implemented a function that uses selenium in it, added the selenium-server-standalone-2.32.0.jar in the project's buidlpath, then used the wizard to generate the web ...
-7
votes
0answers
23 views

Want to download a file using Auto it and save it with a different file name [closed]

My requirement is : By using selenium, i am trying to download the excel file, i want to move the downloaded file by using auto it into a particular folder with folder name and file name mentioned in ...
1
vote
1answer
20 views

How can I write a wait_for_ajax call in selenium where the web page uses XMLHttpRequest based AJAX calls?

I have a select box which calls a XMLHttpRequest based AJAX call to populate another select box. I want selenium to wait till the select box is populated. I have to wait for XMLHttpRequest's ...
0
votes
1answer
29 views

Phpunit error drives me crazy :|

I am trying to learn how to test websites with Selenium Webdriver and PHPUnit, but i keep getting this error whenever i try to run a script. "PHP Fatal error: Class ...
4
votes
2answers
36 views

Executing tests Concurrently on different OS and Browsers with webdriver and testng [java]

I have configured grid in my system and written my test script. i can run my test on any specified OS and any Browser but only on one OS and one Browser at one time not all OS and all Browser ...
1
vote
2answers
39 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
1answer
27 views

webdriver, catching @Test(timeout = 10000)

My webdriver tests are annotated with @Test(timeout = 10000) to force the test to end after 10000ms. This prevents my tests from hanging all night if there is an error. However, My tests are also ...

1 2 3 4 5 155