How to click a button type through selenium using Python
Following is the HTML code of the button I was trying to click:
<div class="login-button">
<button type="submit" class="btn login-from-btn">Login</button>
</div>
What are the possible ways that I can click that button using either XPath/Class Name/CSS Selector?
I have tried as follows:
driver.find_element_by_class_name("login-button btn login-from-btn").click()
python selenium selenium-chromedriver
|
show 1 more comment
Following is the HTML code of the button I was trying to click:
<div class="login-button">
<button type="submit" class="btn login-from-btn">Login</button>
</div>
What are the possible ways that I can click that button using either XPath/Class Name/CSS Selector?
I have tried as follows:
driver.find_element_by_class_name("login-button btn login-from-btn").click()
python selenium selenium-chromedriver
3
What is the result when you run your code as it is?
– G. Anderson
Nov 20 at 16:56
Nothing is happening, no action is being performed on the button
– Sai Bramham
Nov 20 at 17:11
1
Is there an error, or it just doesn't do anything?
– G. Anderson
Nov 20 at 17:12
have you trieddriver.find_element_by_class_name("btn login-from-btn")[0].click()
?
– NotAnAmbiTurner
Nov 20 at 17:38
@RatmirAsanov - Ur's answer is working fine. Thank You soo much.
– Sai Bramham
Nov 21 at 16:05
|
show 1 more comment
Following is the HTML code of the button I was trying to click:
<div class="login-button">
<button type="submit" class="btn login-from-btn">Login</button>
</div>
What are the possible ways that I can click that button using either XPath/Class Name/CSS Selector?
I have tried as follows:
driver.find_element_by_class_name("login-button btn login-from-btn").click()
python selenium selenium-chromedriver
Following is the HTML code of the button I was trying to click:
<div class="login-button">
<button type="submit" class="btn login-from-btn">Login</button>
</div>
What are the possible ways that I can click that button using either XPath/Class Name/CSS Selector?
I have tried as follows:
driver.find_element_by_class_name("login-button btn login-from-btn").click()
python selenium selenium-chromedriver
python selenium selenium-chromedriver
edited Nov 20 at 18:24
Ratmir Asanov
2,8403823
2,8403823
asked Nov 20 at 16:51
Sai Bramham
1
1
3
What is the result when you run your code as it is?
– G. Anderson
Nov 20 at 16:56
Nothing is happening, no action is being performed on the button
– Sai Bramham
Nov 20 at 17:11
1
Is there an error, or it just doesn't do anything?
– G. Anderson
Nov 20 at 17:12
have you trieddriver.find_element_by_class_name("btn login-from-btn")[0].click()
?
– NotAnAmbiTurner
Nov 20 at 17:38
@RatmirAsanov - Ur's answer is working fine. Thank You soo much.
– Sai Bramham
Nov 21 at 16:05
|
show 1 more comment
3
What is the result when you run your code as it is?
– G. Anderson
Nov 20 at 16:56
Nothing is happening, no action is being performed on the button
– Sai Bramham
Nov 20 at 17:11
1
Is there an error, or it just doesn't do anything?
– G. Anderson
Nov 20 at 17:12
have you trieddriver.find_element_by_class_name("btn login-from-btn")[0].click()
?
– NotAnAmbiTurner
Nov 20 at 17:38
@RatmirAsanov - Ur's answer is working fine. Thank You soo much.
– Sai Bramham
Nov 21 at 16:05
3
3
What is the result when you run your code as it is?
– G. Anderson
Nov 20 at 16:56
What is the result when you run your code as it is?
– G. Anderson
Nov 20 at 16:56
Nothing is happening, no action is being performed on the button
– Sai Bramham
Nov 20 at 17:11
Nothing is happening, no action is being performed on the button
– Sai Bramham
Nov 20 at 17:11
1
1
Is there an error, or it just doesn't do anything?
– G. Anderson
Nov 20 at 17:12
Is there an error, or it just doesn't do anything?
– G. Anderson
Nov 20 at 17:12
have you tried
driver.find_element_by_class_name("btn login-from-btn")[0].click()
?– NotAnAmbiTurner
Nov 20 at 17:38
have you tried
driver.find_element_by_class_name("btn login-from-btn")[0].click()
?– NotAnAmbiTurner
Nov 20 at 17:38
@RatmirAsanov - Ur's answer is working fine. Thank You soo much.
– Sai Bramham
Nov 21 at 16:05
@RatmirAsanov - Ur's answer is working fine. Thank You soo much.
– Sai Bramham
Nov 21 at 16:05
|
show 1 more comment
1 Answer
1
active
oldest
votes
driver.find_element_by_xpath("//button[text()='Login']")
can you try this one and let me know does it working
No it's not working.
– Sai Bramham
Nov 20 at 17:10
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53397803%2fhow-to-click-a-button-type-through-selenium-using-python%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
driver.find_element_by_xpath("//button[text()='Login']")
can you try this one and let me know does it working
No it's not working.
– Sai Bramham
Nov 20 at 17:10
add a comment |
driver.find_element_by_xpath("//button[text()='Login']")
can you try this one and let me know does it working
No it's not working.
– Sai Bramham
Nov 20 at 17:10
add a comment |
driver.find_element_by_xpath("//button[text()='Login']")
can you try this one and let me know does it working
driver.find_element_by_xpath("//button[text()='Login']")
can you try this one and let me know does it working
answered Nov 20 at 17:08
Harshit
41
41
No it's not working.
– Sai Bramham
Nov 20 at 17:10
add a comment |
No it's not working.
– Sai Bramham
Nov 20 at 17:10
No it's not working.
– Sai Bramham
Nov 20 at 17:10
No it's not working.
– Sai Bramham
Nov 20 at 17:10
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53397803%2fhow-to-click-a-button-type-through-selenium-using-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
3
What is the result when you run your code as it is?
– G. Anderson
Nov 20 at 16:56
Nothing is happening, no action is being performed on the button
– Sai Bramham
Nov 20 at 17:11
1
Is there an error, or it just doesn't do anything?
– G. Anderson
Nov 20 at 17:12
have you tried
driver.find_element_by_class_name("btn login-from-btn")[0].click()
?– NotAnAmbiTurner
Nov 20 at 17:38
@RatmirAsanov - Ur's answer is working fine. Thank You soo much.
– Sai Bramham
Nov 21 at 16:05