Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding ids to HTML tags for QA automation

I have a query In our application we have lots of HTML tags. During development many tags were not given any id because of no requirement.Now the QA team wants to automate the test cases using QTP. In most of the cases this tool doesn't recognizes because it does not find ids for most of the HTML tags.Now we are asked to add ids to all the HTML tags. I want to know if there will be any effect adding id attribute to these tags. Even positive impact are welcome

like image 337
GustyWind Avatar asked Aug 11 '09 10:08

GustyWind


People also ask

What are tags in automation testing?

In test automation, a tag is a segment of extra metadata that you can include on an individual test case or a group of tests. For purposes of this article, I'll call them tags, as many test frameworks use this terminology (like Cucumber and Robot Framework).

What is test ID in HTML?

data-testid is an attribute used to identify a DOM node for testing purposes. It should be used as a handler to the test code. We need to make sure its value is unique. Therefore, we do not cause conflicts between components.


2 Answers

I do not think there will be any either positive or negative effect : maybe the size of the HTML page will increase a bit, but probably not that much.

Still, are you sure you need to put "id" attributes on every HTML tag of your pages ? Wouldn't only a few of those be enough ? Like on form fields, on links, on error-messages ; and that's probably about it ?

One thing you must take care, though, is that "id", as in "identifers", must be unique ; which implies it might be good, before starting adding them, to define some kind of "id-policy", to say, for instance, that "ids for elements of that kind should be named that way".

And, for your next projects : have developpers add those when theyr're developping ;-)
(And following the policy, of course)


Now that I'm thinking about it : a positive effect might be that it'll be easier to write Javascript code interacting with your HTML document -- but that'll be true for next projects or evolutions for this one, when those id are already present in the HTML at the time developpers put the JS code in place...

like image 143
Pascal MARTIN Avatar answered Sep 23 '22 01:09

Pascal MARTIN


Since there are no QTP related answers yet.

GUI recognition in QTP is object-oriented. In order to identify an object QTP needs a unique combination of object's properties, and checking them better to be as fast as possible - that is why HTML ID would be ideal.

Now, where it is especially critical - for objects that do not have other unique identifiers. The most typical example - html tables. Their contents is dynamic, their number on the page may vary. By adding HTML ID you allow recognition mechanism get straight to the right table.

Objects with other unique properties can be recognized well without HTML ID. For example, if you have a single "submit" link on the page QTP will successfully recognize it by inner text.

So the context-specific answer: don't start adding ids to every single tag. Ask automation guys to prepare a list of objects they have problem with. And add ids to those objects.

PS. It also depends on automation programming skills. There are descriptive programming and dynamic recognition methods. They allow retrieving the right objects even without ids provided.

like image 30
Albert Gareev Avatar answered Sep 25 '22 01:09

Albert Gareev