Skip to content
Snippets Groups Projects
Commit 0a43ebf1 authored by Ahsan Ulhaq's avatar Ahsan Ulhaq
Browse files

Merge pull request #8113 from edx/ahsan/ECOM-1302-Continue-Payment-button-not-accessible

Continue to Payment button is not accessible
parents 29c86032 1d5a310f
No related merge requests found
......@@ -103,9 +103,10 @@ define([
expect($el.length).toEqual(_.size(buttons));
_.each(buttons, function( expectedText, expectedId ) {
var buttonEl = $( '#' + expectedId );
buttonEl.removeAttr('disabled');
expect( buttonEl.length ).toEqual( 1 );
expect( buttonEl[0] ).toHaveClass( 'payment-button' );
expect( buttonEl[0].text ).toEqual( expectedText );
expect( buttonEl[0] ).toHaveText( expectedText );
buttonEl[0].click();
expect(requests[requests.length - 1].requestBody.split('&')).toContain('processor=' + expectedId);
});
......
......@@ -58,7 +58,7 @@ var edx = edx || {};
_getPaymentButtonHtml: function(processorName) {
var self = this;
return _.template(
'<a class="next action-primary payment-button" id="<%- name %>" tab-index="0"><%- text %></a> '
'<button class="next action-primary payment-button" id="<%- name %>" ><%- text %></button> '
)({name: processorName, text: self._getPaymentButtonText(processorName)});
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment