Requesting name and/or id for better Selenium testability












5















I'm testing an application using Cucumber + Java + Selenium and I'm seeing that, most of the type, elements don't have a name, nor an id.



This is the case for almost every component on the page but, more importantly, it's the case for clickable elements which make life harder for me (since I can't do a findElement(By.id(myId)) and have to be creative with my use of XPath).



I'm thinking about asking the dev to add an id or a name to every clickable element and to not clickable element that changes depending on what you have entered before.



Question



Am I abusing my powers here? If not, what argument can I use to make them see that it's a valid request?










share|improve this question







New contributor




Noon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    5















    I'm testing an application using Cucumber + Java + Selenium and I'm seeing that, most of the type, elements don't have a name, nor an id.



    This is the case for almost every component on the page but, more importantly, it's the case for clickable elements which make life harder for me (since I can't do a findElement(By.id(myId)) and have to be creative with my use of XPath).



    I'm thinking about asking the dev to add an id or a name to every clickable element and to not clickable element that changes depending on what you have entered before.



    Question



    Am I abusing my powers here? If not, what argument can I use to make them see that it's a valid request?










    share|improve this question







    New contributor




    Noon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      5












      5








      5


      1






      I'm testing an application using Cucumber + Java + Selenium and I'm seeing that, most of the type, elements don't have a name, nor an id.



      This is the case for almost every component on the page but, more importantly, it's the case for clickable elements which make life harder for me (since I can't do a findElement(By.id(myId)) and have to be creative with my use of XPath).



      I'm thinking about asking the dev to add an id or a name to every clickable element and to not clickable element that changes depending on what you have entered before.



      Question



      Am I abusing my powers here? If not, what argument can I use to make them see that it's a valid request?










      share|improve this question







      New contributor




      Noon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I'm testing an application using Cucumber + Java + Selenium and I'm seeing that, most of the type, elements don't have a name, nor an id.



      This is the case for almost every component on the page but, more importantly, it's the case for clickable elements which make life harder for me (since I can't do a findElement(By.id(myId)) and have to be creative with my use of XPath).



      I'm thinking about asking the dev to add an id or a name to every clickable element and to not clickable element that changes depending on what you have entered before.



      Question



      Am I abusing my powers here? If not, what argument can I use to make them see that it's a valid request?







      automated-testing browser-automation






      share|improve this question







      New contributor




      Noon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Noon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Noon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 2 days ago









      NoonNoon

      1263




      1263




      New contributor




      Noon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Noon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Noon is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          5 Answers
          5






          active

          oldest

          votes


















          4














          This is a perfectly fine request. If the QA department decided to use primarily id locators for testing (as combining several locator types is difficult to maintain) and the developers agreed to this, front-end feature implementations without id locators shouldn't pass through QA successfully, because they do not follow the set standards. Current elements without id are basically bugs, because they are expected to have an id for testing purposes.



          As for arguments for implementing ids on elements...:




          1. If the specification says the feature should be tagged with ids where neccessary, and there are no ids, it's a bug and should be treated as so.

          2. You are a business. You are supposed to find solutions with the biggest reward/cost ratio. XPaths are slower and harder to implement in tests than ids. I honestly don't think that the costs accured during tagging of elements with ids would outweigh the overall costs of using XPaths in testing. However, this is something the project manager should decide.

          3. It allows you to create more maintainable tests and reduces the amount of false positives. DOM changes much more often than the general layout and design of the frontend. With ids however, when you have e.g. a contact form, chances are there is always going to be something like <button id="send-message">Send</button>, no matter how many fields are in the form or in what section the contact form is.

          4. It makes life easier for both of you. You will be able to write better tests faster, so you can dedicate more time to other types of testing, such as exploratory testing, finding more bugs. The developers in turn get quicker feedback and will be able to fix bugs quicker.






          share|improve this answer

































            2














            It is a normal practice. You should only remember that in modern UI a lot of elements are dynamically generated so the capabilities of your devs might be limited in that area. It might also depend on the particular framework your devs use for building UI.






            share|improve this answer































              2














              The more complex is an xPath expression the more likely that it will be broken somewhere in the future. For example:




              • a div is changed to span

              • an additional div will be added to the structure

              • a class name is changed or an additional class is introduced

              • etc.


              All in these cases the tests should be updated, on the other hand if there would have been a proper id assigned to the tested elements, the tests would work fine without any action.






              share|improve this answer































                2














                An alternative is to attempt to base your selectors on the text visible to the users, via Xpaths. Then it does not matter if the location of an element changes, the size or color or any other aspect other then the visible text.



                If this turns out to be difficult for some cases, then by all means ask for a specific ID for a specific element. But the point is for the majority of cases you probably won't need to do that.



                 xpath = "//label[text() = 'Print Book']"





                share|improve this answer


























                • But what if the text change? I'm testing a beta version and the text changing is really not unlikely.

                  – Noon
                  2 days ago











                • Then pick your targets. If things are changing often, don't attempt to test them like this. Wait until they are stable (i.e. signed off) and then test them. Automated tests cannot be maintained against constant change easily.

                  – Paul Collingwood - Futrli
                  2 days ago



















                1














                There are at least few things which you can gain by requesting that.




                1. The test will run faster (finding by id is faster than looking through xpath)

                2. The tests won't fail that much when the UI will change, and time to maintain them will be shorter


                There are also few things which can make your request not doable:




                1. When items on page are generated automatically (and cannot be named statically).

                2. Developer will need too much time to do that

                3. If the framework / language in which site is done doesn't support that.


                So basically the best approach would be talking to developer and asking him about how much of naming can he do by himself (or show you how to add those names / ids by yourself.)






                share|improve this answer























                  Your Answer








                  StackExchange.ready(function() {
                  var channelOptions = {
                  tags: "".split(" "),
                  id: "244"
                  };
                  initTagRenderer("".split(" "), "".split(" "), channelOptions);

                  StackExchange.using("externalEditor", function() {
                  // Have to fire editor after snippets, if snippets enabled
                  if (StackExchange.settings.snippets.snippetsEnabled) {
                  StackExchange.using("snippets", function() {
                  createEditor();
                  });
                  }
                  else {
                  createEditor();
                  }
                  });

                  function createEditor() {
                  StackExchange.prepareEditor({
                  heartbeatType: 'answer',
                  autoActivateHeartbeat: false,
                  convertImagesToLinks: false,
                  noModals: true,
                  showLowRepImageUploadWarning: true,
                  reputationToPostImages: null,
                  bindNavPrevention: true,
                  postfix: "",
                  imageUploader: {
                  brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                  contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                  allowUrls: true
                  },
                  onDemand: true,
                  discardSelector: ".discard-answer"
                  ,immediatelyShowMarkdownHelp:true
                  });


                  }
                  });






                  Noon is a new contributor. Be nice, and check out our Code of Conduct.










                  draft saved

                  draft discarded


















                  StackExchange.ready(
                  function () {
                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsqa.stackexchange.com%2fquestions%2f37253%2frequesting-name-and-or-id-for-better-selenium-testability%23new-answer', 'question_page');
                  }
                  );

                  Post as a guest















                  Required, but never shown

























                  5 Answers
                  5






                  active

                  oldest

                  votes








                  5 Answers
                  5






                  active

                  oldest

                  votes









                  active

                  oldest

                  votes






                  active

                  oldest

                  votes









                  4














                  This is a perfectly fine request. If the QA department decided to use primarily id locators for testing (as combining several locator types is difficult to maintain) and the developers agreed to this, front-end feature implementations without id locators shouldn't pass through QA successfully, because they do not follow the set standards. Current elements without id are basically bugs, because they are expected to have an id for testing purposes.



                  As for arguments for implementing ids on elements...:




                  1. If the specification says the feature should be tagged with ids where neccessary, and there are no ids, it's a bug and should be treated as so.

                  2. You are a business. You are supposed to find solutions with the biggest reward/cost ratio. XPaths are slower and harder to implement in tests than ids. I honestly don't think that the costs accured during tagging of elements with ids would outweigh the overall costs of using XPaths in testing. However, this is something the project manager should decide.

                  3. It allows you to create more maintainable tests and reduces the amount of false positives. DOM changes much more often than the general layout and design of the frontend. With ids however, when you have e.g. a contact form, chances are there is always going to be something like <button id="send-message">Send</button>, no matter how many fields are in the form or in what section the contact form is.

                  4. It makes life easier for both of you. You will be able to write better tests faster, so you can dedicate more time to other types of testing, such as exploratory testing, finding more bugs. The developers in turn get quicker feedback and will be able to fix bugs quicker.






                  share|improve this answer






























                    4














                    This is a perfectly fine request. If the QA department decided to use primarily id locators for testing (as combining several locator types is difficult to maintain) and the developers agreed to this, front-end feature implementations without id locators shouldn't pass through QA successfully, because they do not follow the set standards. Current elements without id are basically bugs, because they are expected to have an id for testing purposes.



                    As for arguments for implementing ids on elements...:




                    1. If the specification says the feature should be tagged with ids where neccessary, and there are no ids, it's a bug and should be treated as so.

                    2. You are a business. You are supposed to find solutions with the biggest reward/cost ratio. XPaths are slower and harder to implement in tests than ids. I honestly don't think that the costs accured during tagging of elements with ids would outweigh the overall costs of using XPaths in testing. However, this is something the project manager should decide.

                    3. It allows you to create more maintainable tests and reduces the amount of false positives. DOM changes much more often than the general layout and design of the frontend. With ids however, when you have e.g. a contact form, chances are there is always going to be something like <button id="send-message">Send</button>, no matter how many fields are in the form or in what section the contact form is.

                    4. It makes life easier for both of you. You will be able to write better tests faster, so you can dedicate more time to other types of testing, such as exploratory testing, finding more bugs. The developers in turn get quicker feedback and will be able to fix bugs quicker.






                    share|improve this answer




























                      4












                      4








                      4







                      This is a perfectly fine request. If the QA department decided to use primarily id locators for testing (as combining several locator types is difficult to maintain) and the developers agreed to this, front-end feature implementations without id locators shouldn't pass through QA successfully, because they do not follow the set standards. Current elements without id are basically bugs, because they are expected to have an id for testing purposes.



                      As for arguments for implementing ids on elements...:




                      1. If the specification says the feature should be tagged with ids where neccessary, and there are no ids, it's a bug and should be treated as so.

                      2. You are a business. You are supposed to find solutions with the biggest reward/cost ratio. XPaths are slower and harder to implement in tests than ids. I honestly don't think that the costs accured during tagging of elements with ids would outweigh the overall costs of using XPaths in testing. However, this is something the project manager should decide.

                      3. It allows you to create more maintainable tests and reduces the amount of false positives. DOM changes much more often than the general layout and design of the frontend. With ids however, when you have e.g. a contact form, chances are there is always going to be something like <button id="send-message">Send</button>, no matter how many fields are in the form or in what section the contact form is.

                      4. It makes life easier for both of you. You will be able to write better tests faster, so you can dedicate more time to other types of testing, such as exploratory testing, finding more bugs. The developers in turn get quicker feedback and will be able to fix bugs quicker.






                      share|improve this answer















                      This is a perfectly fine request. If the QA department decided to use primarily id locators for testing (as combining several locator types is difficult to maintain) and the developers agreed to this, front-end feature implementations without id locators shouldn't pass through QA successfully, because they do not follow the set standards. Current elements without id are basically bugs, because they are expected to have an id for testing purposes.



                      As for arguments for implementing ids on elements...:




                      1. If the specification says the feature should be tagged with ids where neccessary, and there are no ids, it's a bug and should be treated as so.

                      2. You are a business. You are supposed to find solutions with the biggest reward/cost ratio. XPaths are slower and harder to implement in tests than ids. I honestly don't think that the costs accured during tagging of elements with ids would outweigh the overall costs of using XPaths in testing. However, this is something the project manager should decide.

                      3. It allows you to create more maintainable tests and reduces the amount of false positives. DOM changes much more often than the general layout and design of the frontend. With ids however, when you have e.g. a contact form, chances are there is always going to be something like <button id="send-message">Send</button>, no matter how many fields are in the form or in what section the contact form is.

                      4. It makes life easier for both of you. You will be able to write better tests faster, so you can dedicate more time to other types of testing, such as exploratory testing, finding more bugs. The developers in turn get quicker feedback and will be able to fix bugs quicker.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited yesterday

























                      answered 2 days ago









                      lostInCodelostInCode

                      1612




                      1612























                          2














                          It is a normal practice. You should only remember that in modern UI a lot of elements are dynamically generated so the capabilities of your devs might be limited in that area. It might also depend on the particular framework your devs use for building UI.






                          share|improve this answer




























                            2














                            It is a normal practice. You should only remember that in modern UI a lot of elements are dynamically generated so the capabilities of your devs might be limited in that area. It might also depend on the particular framework your devs use for building UI.






                            share|improve this answer


























                              2












                              2








                              2







                              It is a normal practice. You should only remember that in modern UI a lot of elements are dynamically generated so the capabilities of your devs might be limited in that area. It might also depend on the particular framework your devs use for building UI.






                              share|improve this answer













                              It is a normal practice. You should only remember that in modern UI a lot of elements are dynamically generated so the capabilities of your devs might be limited in that area. It might also depend on the particular framework your devs use for building UI.







                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered 2 days ago









                              Alexey R.Alexey R.

                              6,6021728




                              6,6021728























                                  2














                                  The more complex is an xPath expression the more likely that it will be broken somewhere in the future. For example:




                                  • a div is changed to span

                                  • an additional div will be added to the structure

                                  • a class name is changed or an additional class is introduced

                                  • etc.


                                  All in these cases the tests should be updated, on the other hand if there would have been a proper id assigned to the tested elements, the tests would work fine without any action.






                                  share|improve this answer




























                                    2














                                    The more complex is an xPath expression the more likely that it will be broken somewhere in the future. For example:




                                    • a div is changed to span

                                    • an additional div will be added to the structure

                                    • a class name is changed or an additional class is introduced

                                    • etc.


                                    All in these cases the tests should be updated, on the other hand if there would have been a proper id assigned to the tested elements, the tests would work fine without any action.






                                    share|improve this answer


























                                      2












                                      2








                                      2







                                      The more complex is an xPath expression the more likely that it will be broken somewhere in the future. For example:




                                      • a div is changed to span

                                      • an additional div will be added to the structure

                                      • a class name is changed or an additional class is introduced

                                      • etc.


                                      All in these cases the tests should be updated, on the other hand if there would have been a proper id assigned to the tested elements, the tests would work fine without any action.






                                      share|improve this answer













                                      The more complex is an xPath expression the more likely that it will be broken somewhere in the future. For example:




                                      • a div is changed to span

                                      • an additional div will be added to the structure

                                      • a class name is changed or an additional class is introduced

                                      • etc.


                                      All in these cases the tests should be updated, on the other hand if there would have been a proper id assigned to the tested elements, the tests would work fine without any action.







                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered 2 days ago









                                      Bence KaulicsBence Kaulics

                                      600216




                                      600216























                                          2














                                          An alternative is to attempt to base your selectors on the text visible to the users, via Xpaths. Then it does not matter if the location of an element changes, the size or color or any other aspect other then the visible text.



                                          If this turns out to be difficult for some cases, then by all means ask for a specific ID for a specific element. But the point is for the majority of cases you probably won't need to do that.



                                           xpath = "//label[text() = 'Print Book']"





                                          share|improve this answer


























                                          • But what if the text change? I'm testing a beta version and the text changing is really not unlikely.

                                            – Noon
                                            2 days ago











                                          • Then pick your targets. If things are changing often, don't attempt to test them like this. Wait until they are stable (i.e. signed off) and then test them. Automated tests cannot be maintained against constant change easily.

                                            – Paul Collingwood - Futrli
                                            2 days ago
















                                          2














                                          An alternative is to attempt to base your selectors on the text visible to the users, via Xpaths. Then it does not matter if the location of an element changes, the size or color or any other aspect other then the visible text.



                                          If this turns out to be difficult for some cases, then by all means ask for a specific ID for a specific element. But the point is for the majority of cases you probably won't need to do that.



                                           xpath = "//label[text() = 'Print Book']"





                                          share|improve this answer


























                                          • But what if the text change? I'm testing a beta version and the text changing is really not unlikely.

                                            – Noon
                                            2 days ago











                                          • Then pick your targets. If things are changing often, don't attempt to test them like this. Wait until they are stable (i.e. signed off) and then test them. Automated tests cannot be maintained against constant change easily.

                                            – Paul Collingwood - Futrli
                                            2 days ago














                                          2












                                          2








                                          2







                                          An alternative is to attempt to base your selectors on the text visible to the users, via Xpaths. Then it does not matter if the location of an element changes, the size or color or any other aspect other then the visible text.



                                          If this turns out to be difficult for some cases, then by all means ask for a specific ID for a specific element. But the point is for the majority of cases you probably won't need to do that.



                                           xpath = "//label[text() = 'Print Book']"





                                          share|improve this answer















                                          An alternative is to attempt to base your selectors on the text visible to the users, via Xpaths. Then it does not matter if the location of an element changes, the size or color or any other aspect other then the visible text.



                                          If this turns out to be difficult for some cases, then by all means ask for a specific ID for a specific element. But the point is for the majority of cases you probably won't need to do that.



                                           xpath = "//label[text() = 'Print Book']"






                                          share|improve this answer














                                          share|improve this answer



                                          share|improve this answer








                                          edited 2 days ago

























                                          answered 2 days ago









                                          Paul Collingwood - FutrliPaul Collingwood - Futrli

                                          763




                                          763













                                          • But what if the text change? I'm testing a beta version and the text changing is really not unlikely.

                                            – Noon
                                            2 days ago











                                          • Then pick your targets. If things are changing often, don't attempt to test them like this. Wait until they are stable (i.e. signed off) and then test them. Automated tests cannot be maintained against constant change easily.

                                            – Paul Collingwood - Futrli
                                            2 days ago



















                                          • But what if the text change? I'm testing a beta version and the text changing is really not unlikely.

                                            – Noon
                                            2 days ago











                                          • Then pick your targets. If things are changing often, don't attempt to test them like this. Wait until they are stable (i.e. signed off) and then test them. Automated tests cannot be maintained against constant change easily.

                                            – Paul Collingwood - Futrli
                                            2 days ago

















                                          But what if the text change? I'm testing a beta version and the text changing is really not unlikely.

                                          – Noon
                                          2 days ago





                                          But what if the text change? I'm testing a beta version and the text changing is really not unlikely.

                                          – Noon
                                          2 days ago













                                          Then pick your targets. If things are changing often, don't attempt to test them like this. Wait until they are stable (i.e. signed off) and then test them. Automated tests cannot be maintained against constant change easily.

                                          – Paul Collingwood - Futrli
                                          2 days ago





                                          Then pick your targets. If things are changing often, don't attempt to test them like this. Wait until they are stable (i.e. signed off) and then test them. Automated tests cannot be maintained against constant change easily.

                                          – Paul Collingwood - Futrli
                                          2 days ago











                                          1














                                          There are at least few things which you can gain by requesting that.




                                          1. The test will run faster (finding by id is faster than looking through xpath)

                                          2. The tests won't fail that much when the UI will change, and time to maintain them will be shorter


                                          There are also few things which can make your request not doable:




                                          1. When items on page are generated automatically (and cannot be named statically).

                                          2. Developer will need too much time to do that

                                          3. If the framework / language in which site is done doesn't support that.


                                          So basically the best approach would be talking to developer and asking him about how much of naming can he do by himself (or show you how to add those names / ids by yourself.)






                                          share|improve this answer




























                                            1














                                            There are at least few things which you can gain by requesting that.




                                            1. The test will run faster (finding by id is faster than looking through xpath)

                                            2. The tests won't fail that much when the UI will change, and time to maintain them will be shorter


                                            There are also few things which can make your request not doable:




                                            1. When items on page are generated automatically (and cannot be named statically).

                                            2. Developer will need too much time to do that

                                            3. If the framework / language in which site is done doesn't support that.


                                            So basically the best approach would be talking to developer and asking him about how much of naming can he do by himself (or show you how to add those names / ids by yourself.)






                                            share|improve this answer


























                                              1












                                              1








                                              1







                                              There are at least few things which you can gain by requesting that.




                                              1. The test will run faster (finding by id is faster than looking through xpath)

                                              2. The tests won't fail that much when the UI will change, and time to maintain them will be shorter


                                              There are also few things which can make your request not doable:




                                              1. When items on page are generated automatically (and cannot be named statically).

                                              2. Developer will need too much time to do that

                                              3. If the framework / language in which site is done doesn't support that.


                                              So basically the best approach would be talking to developer and asking him about how much of naming can he do by himself (or show you how to add those names / ids by yourself.)






                                              share|improve this answer













                                              There are at least few things which you can gain by requesting that.




                                              1. The test will run faster (finding by id is faster than looking through xpath)

                                              2. The tests won't fail that much when the UI will change, and time to maintain them will be shorter


                                              There are also few things which can make your request not doable:




                                              1. When items on page are generated automatically (and cannot be named statically).

                                              2. Developer will need too much time to do that

                                              3. If the framework / language in which site is done doesn't support that.


                                              So basically the best approach would be talking to developer and asking him about how much of naming can he do by himself (or show you how to add those names / ids by yourself.)







                                              share|improve this answer












                                              share|improve this answer



                                              share|improve this answer










                                              answered yesterday









                                              Michal DobrzyckiMichal Dobrzycki

                                              865




                                              865






















                                                  Noon is a new contributor. Be nice, and check out our Code of Conduct.










                                                  draft saved

                                                  draft discarded


















                                                  Noon is a new contributor. Be nice, and check out our Code of Conduct.













                                                  Noon is a new contributor. Be nice, and check out our Code of Conduct.












                                                  Noon is a new contributor. Be nice, and check out our Code of Conduct.
















                                                  Thanks for contributing an answer to Software Quality Assurance & Testing Stack Exchange!


                                                  • Please be sure to answer the question. Provide details and share your research!

                                                  But avoid



                                                  • Asking for help, clarification, or responding to other answers.

                                                  • Making statements based on opinion; back them up with references or personal experience.


                                                  To learn more, see our tips on writing great answers.




                                                  draft saved


                                                  draft discarded














                                                  StackExchange.ready(
                                                  function () {
                                                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsqa.stackexchange.com%2fquestions%2f37253%2frequesting-name-and-or-id-for-better-selenium-testability%23new-answer', 'question_page');
                                                  }
                                                  );

                                                  Post as a guest















                                                  Required, but never shown





















































                                                  Required, but never shown














                                                  Required, but never shown












                                                  Required, but never shown







                                                  Required, but never shown

































                                                  Required, but never shown














                                                  Required, but never shown












                                                  Required, but never shown







                                                  Required, but never shown







                                                  Popular posts from this blog

                                                  If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                                                  Alcedinidae

                                                  Can an atomic nucleus contain both particles and antiparticles? [duplicate]