Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kreiran readme #6

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nesto s0tp mozda nikada necu vise otvoriti
34 changes: 30 additions & 4 deletions test/specs/basic.e2e.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
describe('Open Wdio Website', () => {
it('Proper title is displayed', () => {
browser.url('https://webdriver.io/');
expect(browser).toHaveTitle('WebdriverIO · Next-gen browser and mobile automation test framework for Node.js | WebdriverIO');
describe('shoutem pricing lista', () => {
it('postoji li h1 element', async () => {
await browser.url('https://shoutem.com/pricing/');

const h1 = $('h1');

await expect(h1).toHaveText('There are more ways to create apps with Shoutem');




})
});


describe('button', () => {
it('je li klikabilan i otvara li se nova stranica heheheheheheheh', async () => {


await browser.url('https://shoutem.com/apps/social-network/');

const buildnow = await $('a=Build now');
await buildnow.click();

const link = await $('.page-title');

await expect(link).toHaveText('Choose an app template');



})
})