admin管理员组文章数量:1344518
I want to write a function that can be used to check whether the search button is deactivated or not.
if the search button is deactivated, then carry out the next steps - fill out the search fields and click on the "Start search" button.
if the search button is activated, then first click on the button so that the search fields are displayed and then do the next steps - fill out the search fields and click on the button "Start search".
<button id="mainbody:searchPersRecord:searchIcon"
name="mainbody:searchPersRecord:searchIcon" type="button"
class="ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only btNormal showHeadArea ui-state-disabled"
alt="Open search" title="Open search" onclick="showHeadArea(true); tryFocusComponentInAnyForm('searchHeadField1_Surname'); return false;;window.open('\/matrix\/views\/basis\/personalmanagement\/searchPersRecord.jsf','_self')"
role="button"
aria-disabled="false" disabled="disabled">
<span class="ui-button-icon-left ui-icon ui-c ma-icon ma-search"></span>
<span class="ui-button-text ui-c">ui-button</span>
</button>
<button id="mainbody:searchPersRecordDivisionForm:searchIcon"
name="mainbody:searchPersRecordDivisionForm:searchIcon" type="button"
class="ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only btNormal showHeadArea"
alt="Open search" title="Open search"
onclick="showHeadArea(true); tryFocusComponentInAnyForm('number'); return false;;window.open('\/matrix\/views\/basis\/personalmanagement\/searchDivision.jsf','_self')" role="button" aria-disabled="false">
<span class="ui-button-icon-left ui-icon ui-c ma-icon ma-search"></span>
<span class="ui-button-text ui-c">ui-button</span>
</button>
I want to write a function that can be used to check whether the search button is deactivated or not.
if the search button is deactivated, then carry out the next steps - fill out the search fields and click on the "Start search" button.
if the search button is activated, then first click on the button so that the search fields are displayed and then do the next steps - fill out the search fields and click on the button "Start search".
<button id="mainbody:searchPersRecord:searchIcon"
name="mainbody:searchPersRecord:searchIcon" type="button"
class="ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only btNormal showHeadArea ui-state-disabled"
alt="Open search" title="Open search" onclick="showHeadArea(true); tryFocusComponentInAnyForm('searchHeadField1_Surname'); return false;;window.open('\/matrix\/views\/basis\/personalmanagement\/searchPersRecord.jsf','_self')"
role="button"
aria-disabled="false" disabled="disabled">
<span class="ui-button-icon-left ui-icon ui-c ma-icon ma-search"></span>
<span class="ui-button-text ui-c">ui-button</span>
</button>
<button id="mainbody:searchPersRecordDivisionForm:searchIcon"
name="mainbody:searchPersRecordDivisionForm:searchIcon" type="button"
class="ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only btNormal showHeadArea"
alt="Open search" title="Open search"
onclick="showHeadArea(true); tryFocusComponentInAnyForm('number'); return false;;window.open('\/matrix\/views\/basis\/personalmanagement\/searchDivision.jsf','_self')" role="button" aria-disabled="false">
<span class="ui-button-icon-left ui-icon ui-c ma-icon ma-search"></span>
<span class="ui-button-text ui-c">ui-button</span>
</button>
Share
Improve this question
edited Dec 7, 2024 at 2:24
Alexander.Goldstein
1551 silver badge8 bronze badges
asked Jul 30, 2021 at 16:52
Kamen K.Kamen K.
471 gold badge1 silver badge4 bronze badges
0
4 Answers
Reset to default 6A function to check if a button is disabled or not can use the jQuery method .is(':disabled')
.
You would use it in the test like this
const isDisabled = ($el) => $el.is(':disabled');
cy.get('button[id="mainbody:searchPersRecord:searchIcon"]')
.then($el => {
if (isDisabled($el)) {
$el.click()
}
}
// fill out the form, etc
cy.get('your_button').then(($button) => {
if(cy.get($button).should('not.be.disabled')){
//your logical code for button ACTIVE
}
else{
//your logical code for button NOT ACTIVE
}
})
cy.get('your button').then(($val)=>{
if($val.is(':enabled')){
//enabled
}else{
//disabled
}
})
Check if it is disabled
cy.get('your_selector').should("be.disabled");
Check if it is not disabled
cy.get('your_selector').should("not.be.disabled");
Since you have id's on your buttons, you can write your selector as
cy.get('#mainbody:searchPersRecord:searchIcon')
本文标签: javascriptHow to write a function to check if an button is disabled or notStack Overflow
版权声明:本文标题:javascript - How to write a function to check if an button is disabled or not - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743727626a2528636.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论