-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mbp 137 - Changes to support multiple envs (#22)
* update tests to support multiple envs update tests to support multiple envs * update env vars update env vars * remove console logs remove console logs * increasing waiting times increasing waiting times * change functions * change search id * add waiting time * add waiting time2 * add waiting time3 * add waiting time4 * add waiting time5 * add waiting time6 * add waiting time7 * add waiting time8 * add waiting time9 * add waiting time10 * add waiting time11 * add waiting time12 * add waiting time13 * add testspeed pageload * test only one * test only one2 * test all * test all2 * test all3 * test all4 * add scroll function * add function report * remove htmlfile * remove report command * add timeout to download error test * add timeout to download error test2 * generate spec report * generate spec report2 * generate spec report3 * generate spec report4 * fix test * prepare PR * fix test2 * update yaml file add env update yaml file add env
- Loading branch information
1 parent
c173c65
commit e26361a
Showing
7 changed files
with
434 additions
and
232 deletions.
There are no files selected for viewing
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
Binary file added
BIN
+67.4 MB
on-premise-deploy/docker-compose/GitHubDesktop-linux-2.9.0-linux2.deb
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { Selector } from "testcafe"; | ||
|
||
export const LoginPage = { | ||
usernameField: Selector('#username'), | ||
passwordField: Selector('#password'), | ||
loginButton: Selector('.pf-c-button'), | ||
usernameField: Selector('#username', { timeout: 25000 }), | ||
passwordField: Selector('#password', { timeout: 25000 }), | ||
loginButton: Selector('.pf-c-button', { timeout: 25000 }), | ||
}; |
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
Oops, something went wrong.