Python Selenium: XPath changes the encoding of my variables





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







1















I has this code that searches through text by XPath. The problem is that the searched text may contain Latin characters like ñor í.



I encoded it and when I print it, it shows perfectly, but when I use the XPath the encoding changes, and obviously it can't be found.



The decoded var prints well:






nombre_act = "HOTEL DIEGO DE ALMAGRO SAN PEDRO DE ATACAMA"
nombre_act = nombre_act.decode("utf8")

nombre_contrato = "Campaña Cyber Day, Desayuno Incluído"
nombre_contrato = nombre_contrato.decode("utf8")
print nombre_contrato

xpath = "//select[@name='"+nombre_act+"']/option[text()='"+nombre_contrato+"']"
print xpath
hotel_sel = driver.find_element_by_xpath(xpath).click()





console










share|improve this question

























  • Adding html sample will help to provide exact answer

    – Vladimir Efimov
    Nov 27 '18 at 5:36


















1















I has this code that searches through text by XPath. The problem is that the searched text may contain Latin characters like ñor í.



I encoded it and when I print it, it shows perfectly, but when I use the XPath the encoding changes, and obviously it can't be found.



The decoded var prints well:






nombre_act = "HOTEL DIEGO DE ALMAGRO SAN PEDRO DE ATACAMA"
nombre_act = nombre_act.decode("utf8")

nombre_contrato = "Campaña Cyber Day, Desayuno Incluído"
nombre_contrato = nombre_contrato.decode("utf8")
print nombre_contrato

xpath = "//select[@name='"+nombre_act+"']/option[text()='"+nombre_contrato+"']"
print xpath
hotel_sel = driver.find_element_by_xpath(xpath).click()





console










share|improve this question

























  • Adding html sample will help to provide exact answer

    – Vladimir Efimov
    Nov 27 '18 at 5:36














1












1








1








I has this code that searches through text by XPath. The problem is that the searched text may contain Latin characters like ñor í.



I encoded it and when I print it, it shows perfectly, but when I use the XPath the encoding changes, and obviously it can't be found.



The decoded var prints well:






nombre_act = "HOTEL DIEGO DE ALMAGRO SAN PEDRO DE ATACAMA"
nombre_act = nombre_act.decode("utf8")

nombre_contrato = "Campaña Cyber Day, Desayuno Incluído"
nombre_contrato = nombre_contrato.decode("utf8")
print nombre_contrato

xpath = "//select[@name='"+nombre_act+"']/option[text()='"+nombre_contrato+"']"
print xpath
hotel_sel = driver.find_element_by_xpath(xpath).click()





console










share|improve this question
















I has this code that searches through text by XPath. The problem is that the searched text may contain Latin characters like ñor í.



I encoded it and when I print it, it shows perfectly, but when I use the XPath the encoding changes, and obviously it can't be found.



The decoded var prints well:






nombre_act = "HOTEL DIEGO DE ALMAGRO SAN PEDRO DE ATACAMA"
nombre_act = nombre_act.decode("utf8")

nombre_contrato = "Campaña Cyber Day, Desayuno Incluído"
nombre_contrato = nombre_contrato.decode("utf8")
print nombre_contrato

xpath = "//select[@name='"+nombre_act+"']/option[text()='"+nombre_contrato+"']"
print xpath
hotel_sel = driver.find_element_by_xpath(xpath).click()





console






nombre_act = "HOTEL DIEGO DE ALMAGRO SAN PEDRO DE ATACAMA"
nombre_act = nombre_act.decode("utf8")

nombre_contrato = "Campaña Cyber Day, Desayuno Incluído"
nombre_contrato = nombre_contrato.decode("utf8")
print nombre_contrato

xpath = "//select[@name='"+nombre_act+"']/option[text()='"+nombre_contrato+"']"
print xpath
hotel_sel = driver.find_element_by_xpath(xpath).click()





nombre_act = "HOTEL DIEGO DE ALMAGRO SAN PEDRO DE ATACAMA"
nombre_act = nombre_act.decode("utf8")

nombre_contrato = "Campaña Cyber Day, Desayuno Incluído"
nombre_contrato = nombre_contrato.decode("utf8")
print nombre_contrato

xpath = "//select[@name='"+nombre_act+"']/option[text()='"+nombre_contrato+"']"
print xpath
hotel_sel = driver.find_element_by_xpath(xpath).click()






python-2.7 selenium selenium-webdriver xpath utf-8






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 27 '18 at 8:17









DebanjanB

47.4k134890




47.4k134890










asked Nov 26 '18 at 18:29









Pablo Beltrán CarvajalPablo Beltrán Carvajal

61




61













  • Adding html sample will help to provide exact answer

    – Vladimir Efimov
    Nov 27 '18 at 5:36



















  • Adding html sample will help to provide exact answer

    – Vladimir Efimov
    Nov 27 '18 at 5:36

















Adding html sample will help to provide exact answer

– Vladimir Efimov
Nov 27 '18 at 5:36





Adding html sample will help to provide exact answer

– Vladimir Efimov
Nov 27 '18 at 5:36












1 Answer
1






active

oldest

votes


















0














Your code trials were near perfect. However I feel you don't need to change through encoding/decoding unless you want to print the characters to the console as follows:



nombre_act_actual = "HOTEL DIEGO DE ALMAGRO SAN PEDRO DE ATACAMA"
#nombre_act = nombre_act_actual.encode("utf-8")

nombre_contrato_actual = "Campaña Cyber Day, Desayuno Incluído"
nombre_contrato = nombre_contrato_actual.encode("utf-8") #required as you need to print to the console
print nombre_contrato

xpath = "//select[@name='"+nombre_act_actual+"']/option[text()='"+nombre_contrato_actual+"']"
hotel_sel = driver.find_element_by_xpath(xpath).click()


However, your another issue is the incompatibility between the version of the binaries you are using as follows:




  • You are using chromedriver=2.41

  • Release Notes of chromedriver=2.41 clearly mentions the following :



Supports Chrome v67-69





  • You are using chrome=70.0

  • Release Notes of ChromeDriver v2.44 clearly mentions the following :



Supports Chrome v69-71




So there is a clear mismatch between ChromeDriver v2.41 and the Chrome Browser v70.0



Solution




  • Upgrade ChromeDriver to current ChromeDriver v2.44 level.

  • Keep Chrome version between Chrome v69-71 levels. (as per ChromeDriver v2.44 release notes)


  • Clean your Project Workspace through your IDE and Rebuild your project with required dependencies only.

  • If your base Web Client version is too old, then uninstall it through Revo Uninstaller and install a recent GA and released version of Web Client.

  • Execute your @Test.






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%2f53487014%2fpython-selenium-xpath-changes-the-encoding-of-my-variables%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









    0














    Your code trials were near perfect. However I feel you don't need to change through encoding/decoding unless you want to print the characters to the console as follows:



    nombre_act_actual = "HOTEL DIEGO DE ALMAGRO SAN PEDRO DE ATACAMA"
    #nombre_act = nombre_act_actual.encode("utf-8")

    nombre_contrato_actual = "Campaña Cyber Day, Desayuno Incluído"
    nombre_contrato = nombre_contrato_actual.encode("utf-8") #required as you need to print to the console
    print nombre_contrato

    xpath = "//select[@name='"+nombre_act_actual+"']/option[text()='"+nombre_contrato_actual+"']"
    hotel_sel = driver.find_element_by_xpath(xpath).click()


    However, your another issue is the incompatibility between the version of the binaries you are using as follows:




    • You are using chromedriver=2.41

    • Release Notes of chromedriver=2.41 clearly mentions the following :



    Supports Chrome v67-69





    • You are using chrome=70.0

    • Release Notes of ChromeDriver v2.44 clearly mentions the following :



    Supports Chrome v69-71




    So there is a clear mismatch between ChromeDriver v2.41 and the Chrome Browser v70.0



    Solution




    • Upgrade ChromeDriver to current ChromeDriver v2.44 level.

    • Keep Chrome version between Chrome v69-71 levels. (as per ChromeDriver v2.44 release notes)


    • Clean your Project Workspace through your IDE and Rebuild your project with required dependencies only.

    • If your base Web Client version is too old, then uninstall it through Revo Uninstaller and install a recent GA and released version of Web Client.

    • Execute your @Test.






    share|improve this answer




























      0














      Your code trials were near perfect. However I feel you don't need to change through encoding/decoding unless you want to print the characters to the console as follows:



      nombre_act_actual = "HOTEL DIEGO DE ALMAGRO SAN PEDRO DE ATACAMA"
      #nombre_act = nombre_act_actual.encode("utf-8")

      nombre_contrato_actual = "Campaña Cyber Day, Desayuno Incluído"
      nombre_contrato = nombre_contrato_actual.encode("utf-8") #required as you need to print to the console
      print nombre_contrato

      xpath = "//select[@name='"+nombre_act_actual+"']/option[text()='"+nombre_contrato_actual+"']"
      hotel_sel = driver.find_element_by_xpath(xpath).click()


      However, your another issue is the incompatibility between the version of the binaries you are using as follows:




      • You are using chromedriver=2.41

      • Release Notes of chromedriver=2.41 clearly mentions the following :



      Supports Chrome v67-69





      • You are using chrome=70.0

      • Release Notes of ChromeDriver v2.44 clearly mentions the following :



      Supports Chrome v69-71




      So there is a clear mismatch between ChromeDriver v2.41 and the Chrome Browser v70.0



      Solution




      • Upgrade ChromeDriver to current ChromeDriver v2.44 level.

      • Keep Chrome version between Chrome v69-71 levels. (as per ChromeDriver v2.44 release notes)


      • Clean your Project Workspace through your IDE and Rebuild your project with required dependencies only.

      • If your base Web Client version is too old, then uninstall it through Revo Uninstaller and install a recent GA and released version of Web Client.

      • Execute your @Test.






      share|improve this answer


























        0












        0








        0







        Your code trials were near perfect. However I feel you don't need to change through encoding/decoding unless you want to print the characters to the console as follows:



        nombre_act_actual = "HOTEL DIEGO DE ALMAGRO SAN PEDRO DE ATACAMA"
        #nombre_act = nombre_act_actual.encode("utf-8")

        nombre_contrato_actual = "Campaña Cyber Day, Desayuno Incluído"
        nombre_contrato = nombre_contrato_actual.encode("utf-8") #required as you need to print to the console
        print nombre_contrato

        xpath = "//select[@name='"+nombre_act_actual+"']/option[text()='"+nombre_contrato_actual+"']"
        hotel_sel = driver.find_element_by_xpath(xpath).click()


        However, your another issue is the incompatibility between the version of the binaries you are using as follows:




        • You are using chromedriver=2.41

        • Release Notes of chromedriver=2.41 clearly mentions the following :



        Supports Chrome v67-69





        • You are using chrome=70.0

        • Release Notes of ChromeDriver v2.44 clearly mentions the following :



        Supports Chrome v69-71




        So there is a clear mismatch between ChromeDriver v2.41 and the Chrome Browser v70.0



        Solution




        • Upgrade ChromeDriver to current ChromeDriver v2.44 level.

        • Keep Chrome version between Chrome v69-71 levels. (as per ChromeDriver v2.44 release notes)


        • Clean your Project Workspace through your IDE and Rebuild your project with required dependencies only.

        • If your base Web Client version is too old, then uninstall it through Revo Uninstaller and install a recent GA and released version of Web Client.

        • Execute your @Test.






        share|improve this answer













        Your code trials were near perfect. However I feel you don't need to change through encoding/decoding unless you want to print the characters to the console as follows:



        nombre_act_actual = "HOTEL DIEGO DE ALMAGRO SAN PEDRO DE ATACAMA"
        #nombre_act = nombre_act_actual.encode("utf-8")

        nombre_contrato_actual = "Campaña Cyber Day, Desayuno Incluído"
        nombre_contrato = nombre_contrato_actual.encode("utf-8") #required as you need to print to the console
        print nombre_contrato

        xpath = "//select[@name='"+nombre_act_actual+"']/option[text()='"+nombre_contrato_actual+"']"
        hotel_sel = driver.find_element_by_xpath(xpath).click()


        However, your another issue is the incompatibility between the version of the binaries you are using as follows:




        • You are using chromedriver=2.41

        • Release Notes of chromedriver=2.41 clearly mentions the following :



        Supports Chrome v67-69





        • You are using chrome=70.0

        • Release Notes of ChromeDriver v2.44 clearly mentions the following :



        Supports Chrome v69-71




        So there is a clear mismatch between ChromeDriver v2.41 and the Chrome Browser v70.0



        Solution




        • Upgrade ChromeDriver to current ChromeDriver v2.44 level.

        • Keep Chrome version between Chrome v69-71 levels. (as per ChromeDriver v2.44 release notes)


        • Clean your Project Workspace through your IDE and Rebuild your project with required dependencies only.

        • If your base Web Client version is too old, then uninstall it through Revo Uninstaller and install a recent GA and released version of Web Client.

        • Execute your @Test.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 27 '18 at 8:22









        DebanjanBDebanjanB

        47.4k134890




        47.4k134890
































            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%2f53487014%2fpython-selenium-xpath-changes-the-encoding-of-my-variables%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

            Tonle Sap (See)

            I get strange results when I access the Sqlitedatabase with Unity C# via XAMPP

            Guatemaltekische Davis-Cup-Mannschaft