Any Open Source projects that has Selenium 2.0 tests? [closed] - testing

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm starting to use Selenium for UI testing and was wondering if there were any open source projects with decent tests that I can use for learning about how to design the Selenium tests.
Any other resources about designing the UI tests would also be appreciated.
I've read the documentation on the Selenium website which is a good start but I'm hoping to find some info/examples of how to make sure your numerous tests are maintainable in the future.
Cheers,
Sam

GWT Mobile Web Toolkit appears to be using Selenium. I had read that jQuery was using it, but I can't see any evidence of them using it in there source code repository.
You may also find this answer helpful.
Update:
Google Caja has some tests that can be found here
A search on Google Code Search may also help track down examples of usage.

Looks like the guys over at Atlassian are using it for Jira and some of there other projects:
Part 1
Part 2
Part 3
part 3 has links to the projects that they have been working on.

Related

What will be the best tool to automate a Single Page Application test cases [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 11 months ago.
Improve this question
I have a new website to test which is a Single page application (SPA) and I'm not sure which tool shall I use to automate it. I thought of Selenium and Protractor but Protractor would not be a good idea as my site has nothing to do with AngularJS and in that case is it like Selenium WebDriver is the only option or there are any other tool available in market?
If selenium is the only good option then what sort of challenge I can face?
I'd go for Watir-Webdriver and Ruby! Main benefits - easy to read and understand code, ruby flexibility, power and irb debugger, speed and reliability. As for challenges - one would be of integrating technologies (if your site uses C# as the backend - i would definitely go with C# and Selenium-Webdriver)
Yes you can go with selenium webdriver with a framework like POM(Page object Model).
Page object model gives flexibility and maintainability for you scripts.
Refer:-
http://toolsqa.com/selenium-webdriver/page-object-model/
Hope it will help you :)
In case of one page application its will be bad idea to use selenium.
add all the dll's to your project, run the webDriver in your code and so on ...
The best idea will be using (.Net webBrowser + MSHtml) [in case that your test will be on internet explorer web browser]
The Benefits:
Speed !
Build in Framework.

How to test <script>alert("XSSTest")</script> [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I need to pass (alert("XSSTest")) this string in all the field to test-penetration testing. even i dont have much idea about this. Presently am doing this entering this text/script manually to each and every field of my web application. Can any one suggest me is there is any tool which can ease this task. I even heard there are many plugin for FF browser available for the same.
You have many options to automate XSS testing.
You can use free and commercial softwares to acheive this. I listed some popular tools below:
Commercial (there may be a trial version)
NetSparker
Acunetix
IBM AppScan
Freeware
Xenotix
BurpSuite
ZedProxy
x5s
Mozilla Firefox AddOn:
XSS Me
Now bear in mind that if you have the source code of the application that you want to test, you may do also static code analysis. This also depends on the technology you are using. Find below some tools for this:
FindBugs
PMD
IBM AppScan (Source)
Of course the lists may continue for many more other tools.

Good Selenium WebDriver Extension? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I noticed that the webdriver doesnt have much support for .net. There are plenty of functions for java and ruby but C# is kinda lagging far... behind.
Does anybody know of any extensions classes or libraries that help C# testers. Currently converting tests from Watin to Selenium and I'm starting to realize selenium does not have a ton of support for things like the table class, select lists, ect.
You could also try. We use it, and love it.
Selenium WebDriverSEd Nuget
Selenium WebDriverSEd GitHub
Shameless self-plug (because I'm on the dev team for this framework):
Try: http://webinator.codeplex.com/
Have you downloaded the C# Client Driver from Selenium? http://selenium.googlecode.com/files/selenium-dotnet-2.17.0.zip
I'm using it and I can use XPath with it as well:
_ieWebDriver.Navigate().GoToUrl("http://www.google.co.uk");
IWebElement queryBox = _ieWebDriver.FindElement(By.Name("q"));
queryBox.FindElement(By.XPath(""));
For Table Class with Selenium, you may like to have a look at FITNESSE to be used with Selenium.

Free UML Drawing Tools [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
What are the best free uml drawing tools?
All the ones I have found require membership payments and only offer limited functionality based to public users on a trial basis...rubbish!
For my (very simple) needs I used ArgoUML. I'm not an expert about, but I found it enough easy to use. It's open source and, on the web page, you can find a good user guide.
Have a look at StarUML ( http://staruml.sourceforge.net/en/ )
It's free, open source, and incredibly fully featured.
For a full list, check out the ones marked as Open Source here: http://en.wikipedia.org/wiki/List_of_Unified_Modeling_Language_tools
But I'd really recommend StarUML!
For my first two software engineering courses, I used the stand alone version of UMLet, but it is just for diagrams. It exports to standard graphics, or pdf. They also have an eclipse plugin version, but I never used it.
For a no frill drawing tool, I find Google Docs (drawings) pretty good. Note that printing works better under Mozilla than Chrome, strangely enough. In Chrome, I cannot get dashed lines to print.
Try UMLet. Supports Eclipse IDE.

Automated UI testing for an Eclipse RCP application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
What tools are available for record and play back type testing of an Eclipse RCP application?
I'm hoping for something that the end users will be able to pick up pretty easily and record their user acceptance tests with.
Have a look at this:
http://code.google.com/p/robotframework-eclipselibrary/
Robot framework is one of the easier testing tools for end users to pick up as it nicely separates code from tests.
WindowTester supports testing of SWT and Swing applications. It supports recording actions to Java tests. It was developed by Instantiations, which consistently delivered excellent products for Java development, integrated well within the Eclipse IDE. Google acquired Instantiations this year, and now offers WindowTester as free software.
Squish, by FrogLogic, supports many UI toolkits, including SWT. I toyed with the Qt version a few years back, and liked it. Squish supports recording to scripts that you can then edit, in Python, JavaScript, Perl or Tcl. Scripts are not dependent on screen coordinates. On the downside, Squish is exorbitantly priced, and it's licensed per UI platform.
Some other options are described in this previous question.
A comparision which includes most of the tools mentioned in the other answers (WindowTester, Squish, RCPTT, Jubula) can be found directly on the Eclipse website.
This question is quiet old and the answers outdated. RCPTT is a great if not the best solution to this problem. Free of charge and you are able to record user interactions
Eclipse foundation now has Jubula ptojext. See http://eclipse.org/jubula/ "Jubula"