Skip to content

Instantly share code, notes, and snippets.

@serhatbolsu
Created August 12, 2020 08:38
Show Gist options
  • Save serhatbolsu/5a0474c98aae5b2531a31bd8b0b91f61 to your computer and use it in GitHub Desktop.
Save serhatbolsu/5a0474c98aae5b2531a31bd8b0b91f61 to your computer and use it in GitHub Desktop.
WebdriverIO-ui-test-automation-textInput.spec.js
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