Created
August 12, 2020 08:38
-
-
Save serhatbolsu/5a0474c98aae5b2531a31bd8b0b91f61 to your computer and use it in GitHub Desktop.
WebdriverIO-ui-test-automation-textInput.spec.js
This file contains 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
import textInputPage from '../pages/textInput.page'; | |
describe('Text Input Spec', function() { | |
it('Change button text with chai', function() { | |
textInputPage | |
.open() | |
.updateButtonText('My Special Name'); | |
expect(textInputPage.getButtonText()).toEqual('My Special Name'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment