We have an JavaScript application which runs on our own custom designed browser. Now, I have came across the situation to automate our application on that browser.
I have vast experience in Selenium Webdriver using Java. But it doesn't automate it.
Could you please let me know can we automate custom designed browser using selenium. If yes please explain.
or
Is there any open source tool to automate it using Java as scripting language.
I have tried Sikuli but it is very slow. Please suggest something else.
I also heard about Google Window Tester Pro. Will it do for me. If yes please let me know how to setup it in eclipse.
Thanks in advance..
Related
How do I automate main frame application with use of Selenium, which pulgin should i use?
Does sequili works on mainframe?
Also I have to automate AS400.
Does anyone has useful content on github?
You can't use Selenium to automate mainframe application. Selenium is just to automate web applications. Please look into Jagacy, which is a java library with which you can automate mainframe applications. For more info please go through the below website,
https://dzone.com/articles/automated-acceptance-testing-for-mainframe-with-cu
Thanks & Regards,
Vinod Baradwaj
I don't think you can automate mainframe using selenium as Selenium is intended only for Browser based web applications., to achieve this you have to use other third party jars:
you would have to use Jacob library to connect to the COM
jagacy
A 3270 (Jagacy) plug-in which is used to automate mainframe applications
does anybody knows a tool when I can set a scenario (click here, fill this form, submit) just like a human did it? Preferably with Firefox
you can test site by using selenium. Its a automated testing tool.Selenium IDE is a Firefox plugin.So you can use that
I'm new to selenium webdriver. I have few questions realted to selenium automation.
Is it possible to automate SAP CRM web UI applications.
Selenium wedriver supports IE11 ( Internet Explorer 11 ) browser.
Is it possible to automate browser test cases to check the usability. ( Not the functionality ).
File upload and download is possible in webdriver.
SAP UI5 appliation can be automated.
I will be using Selenium Wedriver with Java.
Kindly help.
Regards,
Siva
1) I don't see why it wouldn't be possible to automate it, unless it is written in Silverlight.
2) Yes
3) Kind of. Best to leave the usability tests to the acceptance testers, QA should mostly be focused on functionality, at least with automation.
4) Yes. See here.
5) No. I have had luck automating the SAP GUI with Sikuli, though.
I have two questions about testing a browser
The browser I am trying to test is somewhat hybrid. It sometimes runs in chromium way and sometimes runs in internet explorer way
It's hard to check whether all the websites work well in a browser. How would you check that? If there is a good open-source automation tool to do this, would you guys recommend me?
If there is anyone testing a browser, how do you guys automate the test? (if there is a good scenario form, i'd be grateful if you guys share and sharing a automation tool would be nice too)
I'd appreciate it if I get a reply :-)
https://crossbrowsertesting.com/
http://www.multibrowserviewer.com/
you can use selenium ide tool for automation testing.
There are a few good technologies in this realm:
For testing and validation of web development / websites in general you can use Selenium Grid which is meant to test websites in various browses
The URL for Selenium Grid: https://code.google.com/p/selenium/wiki/Grid2
To automate use cases in a browser you can use the free popular Selenium tool which can be used in various languages (http://www.seleniumhq.org/download/).
Other tools:
Mechanize (http://wwwsearch.sourceforge.net/mechanize/)
Watir (http://watir.com/)
I am looking for web applications with selenium test cases. Does anybody know any of these web applications?
I'm not really sure what you are asking, but Selenium is used to create test cases FOR web applications. It is not a feature of web apps.
If you are looking for a simple way to test a web app, you could try the IDE: http://seleniumhq.org/projects/ide/
This tool is something that beginners could use.
If you want a page that can give a demo of Selenium tests in action I am not aware of one. The best is to either, try Selenium IDE (as Blaine has suggested +1), or, if you have some coding experience you could try Selenium WebDriver (also referred to as Selenium 2) which is easy to code and allows for a bit more control when writing tests.
A simple search will also provide you with many Selenium tutorials as it is a fairly popular testing package.