This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
'Create a paid listing': function(browser) { | |
browser | |
.init() | |
.waitForElementVisible('body', 1000) | |
// Code to navigate to payment form | |
// Stripe card | |
.waitForElementPresent('.e2e-card-number iframe', 10000) | |
.element('css selector', '.e2e-card-number iframe', el => { | |
browser |
OlderNewer