Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
scratch-www
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
scratch-www
Commits
10ed23f1
Commit
10ed23f1
authored
Aug 07, 2020
by
BryceLTaylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Update sign-in-and-out integration tests for new chromedriver"
This reverts commit
c5f83e86
.
parent
c5f83e86
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
66 additions
and
72 deletions
+66
-72
package-lock.json
package-lock.json
+66
-66
test/integration/sign-in-and-out.test.js
test/integration/sign-in-and-out.test.js
+0
-6
No files found.
package-lock.json
View file @
10ed23f1
This diff is collapsed.
Click to expand it.
test/integration/sign-in-and-out.test.js
View file @
10ed23f1
...
@@ -17,8 +17,6 @@ let wwwURL = rootUrl;
...
@@ -17,8 +17,6 @@ let wwwURL = rootUrl;
if
(
remote
){
if
(
remote
){
jest
.
setTimeout
(
60000
);
jest
.
setTimeout
(
60000
);
}
else
{
jest
.
setTimeout
(
10000
);
}
}
let
driver
;
let
driver
;
...
@@ -43,10 +41,8 @@ describe('www-integration sign-in-and-out', () => {
...
@@ -43,10 +41,8 @@ describe('www-integration sign-in-and-out', () => {
await
name
.
sendKeys
(
username
);
await
name
.
sendKeys
(
username
);
let
word
=
await
findByXpath
(
'
//input[@id="frc-password-1088"]
'
);
let
word
=
await
findByXpath
(
'
//input[@id="frc-password-1088"]
'
);
await
word
.
sendKeys
(
password
);
await
word
.
sendKeys
(
password
);
await
driver
.
sleep
(
500
);
await
clickXpath
(
'
//button[contains(@class, "button") and
'
+
await
clickXpath
(
'
//button[contains(@class, "button") and
'
+
'
contains(@class, "submit-button") and contains(@class, "white")]
'
);
'
contains(@class, "submit-button") and contains(@class, "white")]
'
);
await
driver
.
sleep
(
500
);
let
element
=
await
findByXpath
(
'
//span[contains(@class, "profile-name")]
'
);
let
element
=
await
findByXpath
(
'
//span[contains(@class, "profile-name")]
'
);
let
text
=
await
element
.
getText
();
let
text
=
await
element
.
getText
();
await
expect
(
text
.
toLowerCase
()).
toEqual
(
username
.
toLowerCase
());
await
expect
(
text
.
toLowerCase
()).
toEqual
(
username
.
toLowerCase
());
...
@@ -74,10 +70,8 @@ describe('www-integration sign-in-and-out', () => {
...
@@ -74,10 +70,8 @@ describe('www-integration sign-in-and-out', () => {
await
name
.
sendKeys
(
username
);
await
name
.
sendKeys
(
username
);
let
word
=
await
findByXpath
(
'
//input[@id="frc-password-1088"]
'
);
let
word
=
await
findByXpath
(
'
//input[@id="frc-password-1088"]
'
);
await
word
.
sendKeys
(
password
);
await
word
.
sendKeys
(
password
);
await
driver
.
sleep
(
500
);
await
clickXpath
(
'
//button[contains(@class, "button") and
'
+
await
clickXpath
(
'
//button[contains(@class, "button") and
'
+
'
contains(@class, "submit-button") and contains(@class, "white")]
'
);
'
contains(@class, "submit-button") and contains(@class, "white")]
'
);
await
driver
.
sleep
(
500
);
});
});
test
(
'
sign out on www
'
,
async
()
=>
{
test
(
'
sign out on www
'
,
async
()
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment