forked from DevExpress/testcafe
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move functional tests to BrowserStack (DevExpress#1383)
* Move mobile tests to BrowserStack * Fix typo * leave only mobile functional tests * change ios to 9.2 * Try another ios device * Make linter happy * try another ios device * disable android device * increase some timeouts * change ios version * keep only problem tests * bring sl back * add desktop safari * Add android and desktop browsers * try to fix auth test * change android device * increase browser opening delay * try to use hub instead of delay * try to specify bs option * add "localIdentifier" * replace os.hostname with localhost * disable 'browserstack.local' * remove some tests * some changes in module * skip safari * add missed lines * return tests * only DevExpressgh-1311 * skip download test * localhost -> hostname * replace hub with delay * Try to clean connector up * compare android devices * Update browserstack package * some remarks * Revert test configuration files * Increase browser opening delay, add some info for browsers * use latest browsers * update "browserstack-connector" package * Change service port * fix config, update "browserstack-connector" package * Try to extend browser opening timeout
- Loading branch information
1 parent
80ea625
commit 24da4de
Showing
6 changed files
with
113 additions
and
83 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
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
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,11 +1,11 @@ | ||
// NOTE: we skip 'iphone,ipad' because no way to download file by link on these devices | ||
describe('[Regression](GH-845) Should execute click on a download link', function () { | ||
it('gh-845', function () { | ||
return runTests('testcafe-fixtures/index-test.js', 'Click on a download link', { skip: 'iphone,ipad' }); | ||
return runTests('testcafe-fixtures/index-test.js', 'Click on a download link', { skip: ['iphone', 'ipad', 'android'] }); | ||
}); | ||
|
||
it('gh-845 in iframe', function () { | ||
return runTests('testcafe-fixtures/index-test.js', 'Click on a download link in iframe', | ||
{ selectorTimeout: 5000, skip: 'iphone,ipad' }); | ||
{ selectorTimeout: 5000, skip: ['iphone', 'ipad', 'android'] }); | ||
}); | ||
}); |
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,9 +1,12 @@ | ||
describe('[Regression](GH-845) Should execute click on a download link', function () { | ||
it('gh-845', function () { | ||
return runTests('testcafe-fixtures/index.test.js', 'Click on a download link'); | ||
return runTests('testcafe-fixtures/index.test.js', 'Click on a download link', { skip: ['android'] }); | ||
}); | ||
|
||
it('gh-845 in iframe', function () { | ||
return runTests('testcafe-fixtures/index.test.js', 'Click on a download link in iframe', { selectorTimeout: 5000 }); | ||
return runTests('testcafe-fixtures/index.test.js', 'Click on a download link in iframe', { | ||
selectorTimeout: 5000, | ||
skip: ['android'] | ||
}); | ||
}); | ||
}); |
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