Selenium InvalidSelectorException caused by single quote (python)










1















I have trouble selecting an element using selenium webdriver.
I am trying to get the "Student's Book" and then click the start button that belongs to it. There are several books with similar title and it's important to get exactly this book in particular. using id's to find the element does not work, because they are being generated and do not always look the same.



the html looks as follows:






<table style="margin: 0; width: 100%;">
<tbody>
<tr>
<td><img src="/image/db/prod/pic.jpg" alt=""></td>
<td style="padding: 0; vertical-align: top; position: relative;">
<h3 class="top0" style="width: 200px;" id="crp_title_254">Student's Book</h3>
<hr><a class="linkButton orangeLinkButton bold" href="some_link">Start</a>
<a class="btn_crpdel" id="btn_crpdel_254"><img class="style-del" src="/styles/pic/style-del.png" alt="-" style="width: 23px; height: 23px;"></a>
</td>
</tr>
</tbody>
</table>





the python part looks like this with the material variable holding the value "Student's Book":



try:
#material = "Student's Book"
start_link = self.browser.find_element(By.XPATH, "//h3[text()='" + material + "']/following::a[contains(text(), launch_button[self.INTERFACE_LANGUAGE])]")
start_link.click()
except Exception as e:
Exceptionhandling...


when running the above code the following exception occurs:



InvalidSelectorException('Given xpath expression "//h3[text()='Student Book's']/following::a[contains(text(), launch_button[self.INTERFACE_LANGUAGE])]" is invalid: SyntaxError: The expression is not a legal expression.', None, None)


The whole thing works perfectly fine if there is no single quote in it.
Does anybody know what i am doing wrong?



thanks in advance!










share|improve this question



















  • 1





    Have you tried to put the text inside double quotes? //h3[text()="'Student Book's'"]

    – Daniel Corzo
    Nov 15 '18 at 17:04











  • @DanielCorzo Thanks for your answer. unfortunately this did not work.

    – semmelbroesl
    Nov 16 '18 at 7:01
















1















I have trouble selecting an element using selenium webdriver.
I am trying to get the "Student's Book" and then click the start button that belongs to it. There are several books with similar title and it's important to get exactly this book in particular. using id's to find the element does not work, because they are being generated and do not always look the same.



the html looks as follows:






<table style="margin: 0; width: 100%;">
<tbody>
<tr>
<td><img src="/image/db/prod/pic.jpg" alt=""></td>
<td style="padding: 0; vertical-align: top; position: relative;">
<h3 class="top0" style="width: 200px;" id="crp_title_254">Student's Book</h3>
<hr><a class="linkButton orangeLinkButton bold" href="some_link">Start</a>
<a class="btn_crpdel" id="btn_crpdel_254"><img class="style-del" src="/styles/pic/style-del.png" alt="-" style="width: 23px; height: 23px;"></a>
</td>
</tr>
</tbody>
</table>





the python part looks like this with the material variable holding the value "Student's Book":



try:
#material = "Student's Book"
start_link = self.browser.find_element(By.XPATH, "//h3[text()='" + material + "']/following::a[contains(text(), launch_button[self.INTERFACE_LANGUAGE])]")
start_link.click()
except Exception as e:
Exceptionhandling...


when running the above code the following exception occurs:



InvalidSelectorException('Given xpath expression "//h3[text()='Student Book's']/following::a[contains(text(), launch_button[self.INTERFACE_LANGUAGE])]" is invalid: SyntaxError: The expression is not a legal expression.', None, None)


The whole thing works perfectly fine if there is no single quote in it.
Does anybody know what i am doing wrong?



thanks in advance!










share|improve this question



















  • 1





    Have you tried to put the text inside double quotes? //h3[text()="'Student Book's'"]

    – Daniel Corzo
    Nov 15 '18 at 17:04











  • @DanielCorzo Thanks for your answer. unfortunately this did not work.

    – semmelbroesl
    Nov 16 '18 at 7:01














1












1








1








I have trouble selecting an element using selenium webdriver.
I am trying to get the "Student's Book" and then click the start button that belongs to it. There are several books with similar title and it's important to get exactly this book in particular. using id's to find the element does not work, because they are being generated and do not always look the same.



the html looks as follows:






<table style="margin: 0; width: 100%;">
<tbody>
<tr>
<td><img src="/image/db/prod/pic.jpg" alt=""></td>
<td style="padding: 0; vertical-align: top; position: relative;">
<h3 class="top0" style="width: 200px;" id="crp_title_254">Student's Book</h3>
<hr><a class="linkButton orangeLinkButton bold" href="some_link">Start</a>
<a class="btn_crpdel" id="btn_crpdel_254"><img class="style-del" src="/styles/pic/style-del.png" alt="-" style="width: 23px; height: 23px;"></a>
</td>
</tr>
</tbody>
</table>





the python part looks like this with the material variable holding the value "Student's Book":



try:
#material = "Student's Book"
start_link = self.browser.find_element(By.XPATH, "//h3[text()='" + material + "']/following::a[contains(text(), launch_button[self.INTERFACE_LANGUAGE])]")
start_link.click()
except Exception as e:
Exceptionhandling...


when running the above code the following exception occurs:



InvalidSelectorException('Given xpath expression "//h3[text()='Student Book's']/following::a[contains(text(), launch_button[self.INTERFACE_LANGUAGE])]" is invalid: SyntaxError: The expression is not a legal expression.', None, None)


The whole thing works perfectly fine if there is no single quote in it.
Does anybody know what i am doing wrong?



thanks in advance!










share|improve this question
















I have trouble selecting an element using selenium webdriver.
I am trying to get the "Student's Book" and then click the start button that belongs to it. There are several books with similar title and it's important to get exactly this book in particular. using id's to find the element does not work, because they are being generated and do not always look the same.



the html looks as follows:






<table style="margin: 0; width: 100%;">
<tbody>
<tr>
<td><img src="/image/db/prod/pic.jpg" alt=""></td>
<td style="padding: 0; vertical-align: top; position: relative;">
<h3 class="top0" style="width: 200px;" id="crp_title_254">Student's Book</h3>
<hr><a class="linkButton orangeLinkButton bold" href="some_link">Start</a>
<a class="btn_crpdel" id="btn_crpdel_254"><img class="style-del" src="/styles/pic/style-del.png" alt="-" style="width: 23px; height: 23px;"></a>
</td>
</tr>
</tbody>
</table>





the python part looks like this with the material variable holding the value "Student's Book":



try:
#material = "Student's Book"
start_link = self.browser.find_element(By.XPATH, "//h3[text()='" + material + "']/following::a[contains(text(), launch_button[self.INTERFACE_LANGUAGE])]")
start_link.click()
except Exception as e:
Exceptionhandling...


when running the above code the following exception occurs:



InvalidSelectorException('Given xpath expression "//h3[text()='Student Book's']/following::a[contains(text(), launch_button[self.INTERFACE_LANGUAGE])]" is invalid: SyntaxError: The expression is not a legal expression.', None, None)


The whole thing works perfectly fine if there is no single quote in it.
Does anybody know what i am doing wrong?



thanks in advance!






<table style="margin: 0; width: 100%;">
<tbody>
<tr>
<td><img src="/image/db/prod/pic.jpg" alt=""></td>
<td style="padding: 0; vertical-align: top; position: relative;">
<h3 class="top0" style="width: 200px;" id="crp_title_254">Student's Book</h3>
<hr><a class="linkButton orangeLinkButton bold" href="some_link">Start</a>
<a class="btn_crpdel" id="btn_crpdel_254"><img class="style-del" src="/styles/pic/style-del.png" alt="-" style="width: 23px; height: 23px;"></a>
</td>
</tr>
</tbody>
</table>





<table style="margin: 0; width: 100%;">
<tbody>
<tr>
<td><img src="/image/db/prod/pic.jpg" alt=""></td>
<td style="padding: 0; vertical-align: top; position: relative;">
<h3 class="top0" style="width: 200px;" id="crp_title_254">Student's Book</h3>
<hr><a class="linkButton orangeLinkButton bold" href="some_link">Start</a>
<a class="btn_crpdel" id="btn_crpdel_254"><img class="style-del" src="/styles/pic/style-del.png" alt="-" style="width: 23px; height: 23px;"></a>
</td>
</tr>
</tbody>
</table>






html python-3.x quotes






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 16 '18 at 7:05







semmelbroesl

















asked Nov 15 '18 at 16:00









semmelbroeslsemmelbroesl

234




234







  • 1





    Have you tried to put the text inside double quotes? //h3[text()="'Student Book's'"]

    – Daniel Corzo
    Nov 15 '18 at 17:04











  • @DanielCorzo Thanks for your answer. unfortunately this did not work.

    – semmelbroesl
    Nov 16 '18 at 7:01













  • 1





    Have you tried to put the text inside double quotes? //h3[text()="'Student Book's'"]

    – Daniel Corzo
    Nov 15 '18 at 17:04











  • @DanielCorzo Thanks for your answer. unfortunately this did not work.

    – semmelbroesl
    Nov 16 '18 at 7:01








1




1





Have you tried to put the text inside double quotes? //h3[text()="'Student Book's'"]

– Daniel Corzo
Nov 15 '18 at 17:04





Have you tried to put the text inside double quotes? //h3[text()="'Student Book's'"]

– Daniel Corzo
Nov 15 '18 at 17:04













@DanielCorzo Thanks for your answer. unfortunately this did not work.

– semmelbroesl
Nov 16 '18 at 7:01






@DanielCorzo Thanks for your answer. unfortunately this did not work.

– semmelbroesl
Nov 16 '18 at 7:01













0






active

oldest

votes












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%2f53323316%2fselenium-invalidselectorexception-caused-by-single-quote-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















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%2f53323316%2fselenium-invalidselectorexception-caused-by-single-quote-python%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

Top Tejano songwriter Luis Silva dead of heart attack at 64

ReactJS Fetched API data displays live - need Data displayed static

Evgeni Malkin