Tagged Questions
-3
votes
1answer
342 views
What are the advantages of web driver over selenium RC?
Please provide answers in detail, So that we could clarify that which one is to choose, Web driver or Selenium RC.
5
votes
5answers
363 views
I want to enter the SQA field specifically automation
I am working hourly for low wage as a QA intern/tester. I want to learn more about this field. I have already graduated, so everything I have learned is self taught or learned somehow on the job. At ...
3
votes
3answers
201 views
Rule of thumb for using wait()
A rule of thumb for using wait() would be before navigating to a different page. For Ex :
WebDriverWait(driver,10).until(lambda driver: driver.title.startswith("Submitted!!"))
What would be other ...
4
votes
4answers
308 views
How to test the test scripts?
Once an automation test is created, how do I test it and make sure the test does what its supposed to do? I can easily test the scenarios where test passes, but how to go about the ones that fails due ...
3
votes
1answer
323 views
Your suggestions for writing reliable Web UI automation
Web UI automation is unreliable. I presume it is possible to increase the reliability of Web UI tests. One such advice would be to put an abstraction layer on top of your test that does actual DOM ...
5
votes
4answers
800 views
what is the best way to write automated end to end user scenarios?
When automating user scenarios, we typically cover an end-to-end user flow.
Unit testing recommends that each test method should be independant and only test one thing.
But things are different in ...
4
votes
4answers
1k views
Testing Page Layout with webdriver
Has anyone tried to test the page layout of a website using webdriver? To be specific, using webelement.getPosition() and webelement.getDimension().
Shouldn't these two methods be enough for testing ...
5
votes
3answers
2k views
Is Selenium the right tool for browser compatibility testing?
I have been seeing a lot of customers pushing for browser compatibility testing using Selenium. Was wondering whether this is really necessary. The push is mostly due to Selenium grid supporting multi ...
4
votes
3answers
541 views
Does the latest version of QTP have something similar to Selenium Grid?
Does anyone know whether QTP supports parallel test execution on multiple browsers now? I am looking for something similar to Selenium Grid.
4
votes
4answers
604 views
What are the good free mouse and keyboard automation programs?
I know about autoit and about autohotkey but I am not sure that they are the same.
What other good automation programs are there?
Should I use different programs for automatic browser mouse clicks and ...
4
votes
2answers
367 views
how to implement a given logged in user role through UI automation?
As suggested on StackOverflow I am posting this question here as well.
I am having trouble how to implement the Given step (with SpecFlow for example) of a logged in user role throught Web UI ...