Skip to content

Commit

Permalink
wdio.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
lavishaGit authored Jan 28, 2025
1 parent 3bb59b0 commit 88688eb
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions tests/browserstack_automation/config/wdio.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ try {
// Run `npm run wdio:setup`
}

//const capabilities = [...browserCapabilities, ...mobileCapabilities];
const capabilities =[...browserCapabilities];
const capabilities = [...browserCapabilities, ...mobileCapabilities];

const date = new Date();

const dateForDisplay = date.toDateString();
Expand All @@ -37,37 +37,37 @@ module.exports.config = {
],
],
specs: [
// '../specs/DiscussPage.js',
'../specs/DiscussPage.js',
'../specs/FAQPage.js',
// '../specs/PrivacyPage.js',
// '../specs/ReadyPage.js',
// '../specs/TermsPage.js',
// '../specs/TopNavigation.js',
// '../specs/TopicsPage.js',
// '../specs/HowItWorks.js',
// '../specs/FooterLinks.js',
// '../specs/SignInPage.js',
'../specs/PrivacyPage.js',
'../specs/ReadyPage.js',
'../specs/TermsPage.js',
'../specs/TopNavigation.js',
'../specs/TopicsPage.js',
'../specs/HowItWorks.js',
'../specs/FooterLinks.js',
'../specs/SignInPage.js',

// '../specs/BallotPage.js',
// '../specs/CandidatesPage.js',
'../specs/BallotPage.js',
'../specs/CandidatesPage.js',

// '../specs/WhosRunningForOffice.js',
'../specs/WhosRunningForOffice.js',

],

capabilities,
commonCapabilities: {
// 'bstack:options': {
// buildName,
// debug: 'true',
// // geoLocation is only available under Enterprise plans
// // geoLocation: 'US-CA',
// // gpsLocation is only available under Paid plans
// // Oakland, CA, USA
// gpsLocation: '37.804363,-122.271111',
// maskCommands: 'setValues, getValues, setCookies, getCookies',
// video: 'true',
// },
'bstack:options': {
buildName,
debug: 'true',
// geoLocation is only available under Enterprise plans
// geoLocation: 'US-CA',
// gpsLocation is only available under Paid plans
// Oakland, CA, USA
gpsLocation: '37.804363,-122.271111',
maskCommands: 'setValues, getValues, setCookies, getCookies',
video: 'true',
},
},
maxInstances: 1,
exclude: [],
Expand Down

0 comments on commit 88688eb

Please sign in to comment.