You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hello @gianlucamangiapelo please help me by addressing the below mentioned issue
i am trying to publish the test results to Azure Devops testcase using your custom service: AzureDevopsService and added that to wdio.config.js file and set all the project, test plan related attributes like below.. also added a test case ID to a test but its not able to publish the test results.. i am quite sure that the azure token and values are perfect as they are working fine via postman.. need to know where I am doing wrong...
hello @gianlucamangiapelo please help me by addressing the below mentioned issue
i am trying to publish the test results to Azure Devops testcase using your custom service: AzureDevopsService and added that to wdio.config.js file and set all the project, test plan related attributes like below.. also added a test case ID to a test but its not able to publish the test results.. i am quite sure that the azure token and values are perfect as they are working fine via postman.. need to know where I am doing wrong...
services: [
[
'appium',
{
args: {
address: 'localhost',
port: 4724
},
logPath: './'
}
],
[
AzureDevopsService,
{
pat: 'tokenvalue',
organizationUrl: 'https://dev.azure.com/orgid',
projectId: 'projectid',
planId: 6496,
suiteId: 6497,
// caseIdRegex: '@?cC',
caseIdRegex: '(\d+)',
runName: 'Demo',
caseId: 6547
},
]
and in the test script i am using like below:
describe('6547 sample',() => {
it('6547 sample test', async () => {
await driver.pause(10000);
})
})
I am blocked due to this issue, please HELP
Originally posted by @Guru426 in #6 (comment)
The text was updated successfully, but these errors were encountered: