verify rtsp capabilities
I need to load test a site that serves up flash video via RTSP. I've looked at JMeter & Selenium and do not see any support for RTSP. Are there any testing tools that support RTSP load testing? ...
I need to load test a site that serves up flash video via RTSP. I've looked at JMeter & Selenium and do not see any support for RTSP. Are there any testing tools that support RTSP load testing? ...
I’m writing a little private app to automatically log into my internet banking every day, and download the latest transactions. I’m writing it as a Django app, so I’m working in Python. My internet banking doesn’t seem to work without JavaScript — I think it uses JavaScript to assign a session ID of some sort. Fetching the sign-in page ...
I want to make the browser open a local url with a name of the live url. Meaning that when I do: sel.open('http://live-url/) selenium will actually open the local url. One would test this by changing it's hosts file but this is impossible when running on many machines. ideas? ...
I am writing user extensions to selenium. I have the document object. How can I get the window object of the window that contains my document? PageBot.prototype.locateElementByMyLocator= function(text, inDocument) { // I want the window here } ...
Is it possible in selenium to write blocking commands? I want to make a "clickAndWaitForAjax" command. It will click a button and wait until a div is filled with text from the server. It is clear to me this can be done with two commands, but can it be done with one? How? ...
If I have a table in Selenium and I want to get a specific cell in a row, what would be the relevant method call? What I am confused about is the specific value I am looking for comes up more than once in the table so how do I know which value is found? Furthermore, how can I pass credentials via basic auth? Thanks ...
I'm currently using Selenium IDE to fill a form. The form has a select box for countries: <select id="id_country"> <option>Canada</option> <option>England</option> </select> <select id="id_province"></select> The province options above is not generated until a country with provinces is selected. jQuery takes care of that ge...
Hi, I've the HTML source like this, <input type="image" onclick="return logSub();" src="/images/Login_submit.gif" width="105" height="33" border="0" /> Here there is no ID or NAME. So I can only locate this using image index (which is hard) or using the src tag? But I dont know how use the src tag? Is that possible? ...
I'm learning Selenium now. I'm going to use it in the Ruby on Rails project. Now I created demo project just to test Selenium on Rails. Content of #{RAILS_ROOT}/test/selenium/articles/delete_article.rsel is following: setup :fixtures => :all open "/articles" assert_text_present("First Article title") assert_text_present("Destroy") c...
im trying to preform a right click using selenium, any thoughts on how to do this? ...
I have Selenium running under Cruise Control to test our site once a day. On Saturday Selenium started throwing the error below. No code was changed between the tests running sucessfully on Friday night. Also, the same thing has happened on three different machines so I assume it must be something on the machine such as windows updates....
A little context: I'm trying to build and run the unit tests for the source of the Selenium IDE plugin. Everything builds correctly (through maven commands, et al) and the unit tests fire up an instance of Firefox. However, the jsUnit testRunner.html page freezes whenever a chrome://-accessed uri path is encountered. I realize there ...
I have been running into intermittent errors with some java selenium-rc tests which I think are related to a page which has an ajax poll and automatically refreshes when some condition is reached on the server. In this scenario, I have no way of asking selenium to wait for the page to load, and so I run into a bunch of random "Couldn't a...
Hi there. I'm trying to find a simple Selenium call to grab the current option from a select drop-down list. I'm aware there are calls which grab all the values in a list but I wish to know which option is currently selected. Apologies if this is trivial but google and Selenium IDE didn't help me. Thanks. ...
I need to find a <div> with certain content and click it from Selenium, as so: <tr> <td>clickAndWait</td> <td>//div[@class='gwt-Label' ***WITH CONTENT='Logout'***]</td> <td>5000</td> </tr> Is there some way to do this? I don't want to use an absolute xpath. ...
I run GWT OBF (thus this isn't the problem), but when I use Selenium (tried both IDE and RC) my clicks don't get recorded. The component I'm trying to click is a <div>, but nothing happens. For instance, in IDE I am sometimes (very seldom, like one in 50 clicks) able to register a click on different tabs (contained in <div>), but never ...
after running the command java -jar selenium-server.jar -htmlSuite "iexplore" "http://www.google.com/" "C:\Selenium\suite.html" "C:\Selenium\results.html" browser opens and shows page cannot be displayed on the test suite column.Help me out in this? ...
I have an HTML-based data entry form that submits data to a server. Before submission, the form's row labeled 'RecordNumber' should be blank; after submission (to a server loaded with test data) that row should display the value '1'. How can I use Selenium to verify this outcome? I have figured out how record the steps with Selenium, ...
I am seeing a problem in Selenium with IE6/8 that is giving me some bad time. The problem is that the DOM window properties are not updated after actions are done and always return the default values. To give you couple of examples: Browser is first launched in normal size (document.body.clientHeight = 500px). After I do window maximi...
I'm writing Selenium tests for an ASP application, and would like to test the cases when a session isn't properly initialized. Right now I'm clearing the cookies manually, but that is becoming a bit cumbersome. (ok, to be honest I forget it every fifth-or-so time and have to re-run the tests...) Is there a way in Selenium IDE to clear ...