Python selenium get location of an element












1















So I have this site and I'm trying to obtain the location and size of an element based on this xpath "//div[@class='titlu']"



enter image description here



How you can see that is visible and has nothing special.



Now the problem I've faced is that when I'm doing the search for xpath like this
e = self.driver.find_element_by_xpath(xpath) the location and size
of e are both 0



Also, for some reason, if I'm trying to get the text like this:
e.text is going to show me an empty string, and I need to get the actual text in this way e.get_attribute("textContain")



So do you have any idea how can I get the location and size of this element?










share|improve this question























  • I understand now, what you want is .find_elements_by_xpath(xpath)[1].location notice s in elements and it select second element

    – ewwink
    Nov 25 '18 at 11:43


















1















So I have this site and I'm trying to obtain the location and size of an element based on this xpath "//div[@class='titlu']"



enter image description here



How you can see that is visible and has nothing special.



Now the problem I've faced is that when I'm doing the search for xpath like this
e = self.driver.find_element_by_xpath(xpath) the location and size
of e are both 0



Also, for some reason, if I'm trying to get the text like this:
e.text is going to show me an empty string, and I need to get the actual text in this way e.get_attribute("textContain")



So do you have any idea how can I get the location and size of this element?










share|improve this question























  • I understand now, what you want is .find_elements_by_xpath(xpath)[1].location notice s in elements and it select second element

    – ewwink
    Nov 25 '18 at 11:43
















1












1








1








So I have this site and I'm trying to obtain the location and size of an element based on this xpath "//div[@class='titlu']"



enter image description here



How you can see that is visible and has nothing special.



Now the problem I've faced is that when I'm doing the search for xpath like this
e = self.driver.find_element_by_xpath(xpath) the location and size
of e are both 0



Also, for some reason, if I'm trying to get the text like this:
e.text is going to show me an empty string, and I need to get the actual text in this way e.get_attribute("textContain")



So do you have any idea how can I get the location and size of this element?










share|improve this question














So I have this site and I'm trying to obtain the location and size of an element based on this xpath "//div[@class='titlu']"



enter image description here



How you can see that is visible and has nothing special.



Now the problem I've faced is that when I'm doing the search for xpath like this
e = self.driver.find_element_by_xpath(xpath) the location and size
of e are both 0



Also, for some reason, if I'm trying to get the text like this:
e.text is going to show me an empty string, and I need to get the actual text in this way e.get_attribute("textContain")



So do you have any idea how can I get the location and size of this element?







python html selenium selenium-webdriver






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 25 '18 at 11:34









ValiVali

668




668













  • I understand now, what you want is .find_elements_by_xpath(xpath)[1].location notice s in elements and it select second element

    – ewwink
    Nov 25 '18 at 11:43





















  • I understand now, what you want is .find_elements_by_xpath(xpath)[1].location notice s in elements and it select second element

    – ewwink
    Nov 25 '18 at 11:43



















I understand now, what you want is .find_elements_by_xpath(xpath)[1].location notice s in elements and it select second element

– ewwink
Nov 25 '18 at 11:43







I understand now, what you want is .find_elements_by_xpath(xpath)[1].location notice s in elements and it select second element

– ewwink
Nov 25 '18 at 11:43














1 Answer
1






active

oldest

votes


















1














There are two elements matching this xpath. driver.find_element_by_xpath returns the first one while you are looking for the second one. Use the ancestor <div> with id attribute for unique xpath



"//div[@id='content-detalii']//div[@class='titlu']"





share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    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: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    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
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53467023%2fpython-selenium-get-location-of-an-element%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    There are two elements matching this xpath. driver.find_element_by_xpath returns the first one while you are looking for the second one. Use the ancestor <div> with id attribute for unique xpath



    "//div[@id='content-detalii']//div[@class='titlu']"





    share|improve this answer




























      1














      There are two elements matching this xpath. driver.find_element_by_xpath returns the first one while you are looking for the second one. Use the ancestor <div> with id attribute for unique xpath



      "//div[@id='content-detalii']//div[@class='titlu']"





      share|improve this answer


























        1












        1








        1







        There are two elements matching this xpath. driver.find_element_by_xpath returns the first one while you are looking for the second one. Use the ancestor <div> with id attribute for unique xpath



        "//div[@id='content-detalii']//div[@class='titlu']"





        share|improve this answer













        There are two elements matching this xpath. driver.find_element_by_xpath returns the first one while you are looking for the second one. Use the ancestor <div> with id attribute for unique xpath



        "//div[@id='content-detalii']//div[@class='titlu']"






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 25 '18 at 11:39









        GuyGuy

        18.5k72149




        18.5k72149






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • 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%2fstackoverflow.com%2fquestions%2f53467023%2fpython-selenium-get-location-of-an-element%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

            Lallio

            Unable to find Lightning Node

            Futebolista