I am using Selenium+JUnit+Eclipse I have 3 classes in 3 packages. Test class as A(in default Package), Activity class as B(In activity package), Repository class as C(in objectRepository package).
We are using Selenium for functional testing our AJAX application. Although Selenium has been a great help for us, it still suffers the same problem functional testing always suffered: tests maintenan
I am testing a page similar to Google search where you would enter the search terms in the provided text box, and click Search, and the next page returns a bunch of results matching your search term.
I\'m using the colorbox library to display lightboxes within my application (http://colorpowered.com/colorbox/). The code seems to work fine in the browser, but I\'m having trouble getting the automat
I\'ve been using cucumber + webrat but needed extra Rails 3 compatability and javascript testing so changed to capybara + selenium. Currently I\'m on Rails 3.0.7, Cucumber 0.10.2, caybara 1.0.0.beta1.
How to handle the scenario while running SELENIUM RC.If we get the default port 4444 is开发者_开发知识库 busy.You first need to check whether port 4444 is busy. If it is busy then set your RC to use a
How do I fill map by a list of links names from a html code. clearly, I\'ve this code HTML: <div id=\"element-list\">
I use the code driver.findElement(By.name(\"username\")).sendKeys(\"name\"); drive开发者_如何转开发r.findElement(By.name(\"password\")).sendKeys(\"12345\");
I want to be able to use WebElement instances after i moved to another page. I am not sure if that\'s possible, but there would be the need to store the current state of the browser window. Any pointe
I\'m running into an issue with the following code in a capybara test (covering a jquery autocomplete select)