Last active
June 30, 2024 14:38
-
-
Save trikitrok/a65eb264b3483ea7cf83 to your computer and use it in GitHub Desktop.
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
it("shows a new 'autoresponder' mailing", function () { | |
element(by.css('.dropdown .new_mailings')).click(); // <- this fixes it | |
element(by.css('#new_ma')) | |
.click().then(function () { | |
expect(ptor.getCurrentUrl()) | |
.toMatch( | |
'/projects/excecutive-education/new-mailing/ma' | |
); | |
} | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment