You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Selenium Users
How do I deploy the UI test I did with Selenium IDE to Azure? I couldn't find any resources on this. do I have to do any conversion? .side to XML. If you can help I'd appreciate it, have a good day.
Dharmender K Singh
unread,
Aug 30, 2019, 6:37:19 AM8/30/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Selenium Users
I tried doing this by adding commaline task in the build/release pipeline. First add a command line task with script as "call npm install -g selenium-side-runner". Then add another commandline task with script as "call npm install -g chromedriver". And then finally one more Commaline task to run the test with the script as "selenium-side-runner ABC.side". For me the pipelines are getting passed but its not show details of the test cases(whether it has passed or failed) Please let me know if you find the solution
Dave Haeffner
unread,
Sep 3, 2019, 3:55:34 AM9/3/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Selenium Users
Dharmender's approach is good. You can output run results to a file (e.g., JUnit XML) with the --output-directory and --output flags.