I have done the integration of Sikuli with the Selenium now jut wanted to know if there is a link where I can learn all the commands I can use using Sikuli with Selenium. I tried googling and I learned about "App" commands is there any other document or link where i can learn more about commands that can be used.
Take a look at Sikuli documentation
It is the official site for Sikuli, and has pretty much all you need to know about Sikuli.
Related
I have some programming experience and want to switch to QA roles that suit my skills better, I have more knowledge of Java but some Python.
I am wondering if I should focus on Selenium that I have some knowledge of or Protractor or Cypress that are considered as the latest standards?
I am more of a front end guy as a developer.
Also, I generally use guru99, tutorialspoint or w3schools to get started. Any other great resources for free or less expensive for quick learning for these topics?
Will cloud upgrades affect this learning process?
Please advice.
Selenium is still the most wide used web UI automation tool, having a lot of tutorials for any level of experience etc. Also, once you know one tool, you will be able to learn other similar tools in the future easily. Also, Selenium supports and mainly used in programming languages you already know while the other tools you mentioned using JavaScript. So, I'd advice you to start (and then continue) with Selenium.
I think Protractor is being dropped by Angular in favor of Cypress.
Please see
The State of end-to-end testing with Angular
...we’ve decided to deprecate Protractor
and #cypress/schematic.
Component testing
Also consider that Cypress has first-class component testing (as well as e2e testing) which has better speed than e2e but better coverage than unit testing.
See Quickstart Angular
and Cypress Component Testing vs Angular Test Harness
I have to write a recorder and playback feature for browser based applications. I am first exploring the open source alternatives available. I am fluent with java. I am wondering in which language selenium ide written in?. My research shows javascript, but still would like to confirm it with someone who is familiar with this domain.
Thanks,
Seems to be javascript.
It's an open source project so you can see the code here https://github.com/SeleniumHQ/selenium-ide
I know that how we can use Sikuli in Java. But I have some code in Python which is automating a web application, and I want to use Sikuli in it. I searched a lot on the Internet about how we can use Sikuli in Python. But I did not find any good resource related to it.
How can I import Sikuli script in a Python project in Eclipse? When I added the sikuli-script.jar file in the Python path in Eclipse and when I am trying to use
import * from sikuli
Then I am getting "there is no such type of module named sikuli".
Sikuli is a tool written in Java and hence you can't use it in your Python code as is. Instead you have the option to use it within a Jython environment, that provides you the Python syntax and enables running jar packages. If you are not using many third party Python libraries and mainly stick to the generic functionality, you shouldn't get into too much trouble transferring from pure Python to Jython.
There are clear instructions of how to use Sikuli with Jython on SikuliX official website. If you have any related questions, you can post the here.
I want to automate testing of java based applications, not exactly portals though.
RFT 7 version that we have is not compatible with latest version of Firefox, so we need another tool, preferably open source.
Please suggest some replacement for Selenium and RFT. The purpose is automation of Functional testing.
I think you meant "Web applications", since that's what Selenium is for.
I suggest Sahi Open Source: works with many browsers, OS independent. I've never used it though, so can't give you a proper review.
Both RFT (Rational Functional Tester) and Selenium is used for Functional & Regression test of web. RFT is commercial & Selenium is open source/free tool.
There are some other free tools that you can try. Such as
TestProject
Sahi
Watir
I am a beginner to testing and I have to use Selenium IDE in my project.
Can anyone help me in gaining the starting stuff, links containing detailed demo on Selenium, and how to run test cases using Selenium IDE tool?
Here is a tutorial that might help you.
There are a couple of good videos online as well, an example one here
Here is very good material about selenium IDE. Described selenium IDE commands with proper practical examples.
Follow the link from where you can start up with selenium IDE and go on further
http://docs.seleniumhq.org/docs/02_selenium_ide.jsp
It will be very helpful for you.