Merge pull request #10750 from edx/asadiqbal08/SOL-1417-CSV

SOL-1417 Certs: Allow CSV upload for Cert Exceptions
This commit is contained in:
Matt Drayer
2015-12-01 10:36:32 -05:00
12 changed files with 539 additions and 50 deletions

View File

@@ -1001,7 +1001,7 @@ class CertificatesPage(PageObject):
Wait for Certificate Exceptions to be rendered on page
"""
self.wait_for_element_visibility(
'div.certificate_exception-container',
'div.certificate-exception-container',
'Certificate Exception Section is visible'
)
self.wait_for_element_visibility('#add-exception', 'Add Exception button is visible')
@@ -1097,7 +1097,7 @@ class CertificatesPage(PageObject):
"""
Returns the "Certificate Exceptions" section.
"""
return self.get_selector('div.certificate_exception-container')
return self.get_selector('div.certificate-exception-container')
@property
def last_certificate_exception(self):