Skip to content

Instantly share code, notes, and snippets.

@AlexanderMoskovkin
Created May 11, 2017 08:44
Show Gist options
  • Save AlexanderMoskovkin/94172711f330d2195865dfc345a1f467 to your computer and use it in GitHub Desktop.
Save AlexanderMoskovkin/94172711f330d2195865dfc345a1f467 to your computer and use it in GitHub Desktop.
import Page from './page-object';
const page = new Page();
fixture `SVG`
.page('./vue/examples/svg/index.html');
test('Add a stat', async t => {
await t
.expect(page.axisLabels.count).eql(6)
.typeText(page.addForm.input, 'G')
.click(page.addForm.btnAdd)
.expect(page.axisLabels.count).eql(7);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment