File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed
Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ module.exports = function (browser) {
66
77 if (
88 browser . desiredCapabilities . browserName == 'chrome' ||
9- browser . desiredCapabilities . browserName == 'internet explorer'
9+ browser . desiredCapabilities . browserName == 'internet explorer' ||
10+ browser . desiredCapabilities . browserName == 'opera'
1011 ) {
1112 // Can't get the tab switching to work in these
1213 run = describe . skip ;
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ module.exports = function (browser) {
99
1010 // Don't test alerts etc. under Safari, because Selenium can't
1111 // manage alerts with Safari.
12- var describeAlert =
13- ( browser . desiredCapabilities . browserName == 'safari' )
14- ? describe . skip
15- : describe ;
12+ var describeAlert = (
13+ browser . desiredCapabilities . browserName == 'safari' ||
14+ browser . desiredCapabilities . browserName == 'opera'
15+ ) ? describe . skip : describe ;
1616
1717 var truthy = function ( ) {
1818 return Q . when ( true ) ;
Original file line number Diff line number Diff line change @@ -96,14 +96,18 @@ module.exports = function remote (rev) {
9696 platform: 'Windows 7',
9797 build: rev,
9898 name: 'Internet Explorer 8.0 ' + rev,
99- dontFailBuild: true
10099 },{
101100*/ browserName : 'internet explorer' ,
102101 version : '9.0' ,
103102 platform : 'Windows 7' ,
104103 build : rev ,
105104 name : 'Internet Explorer 9.0 ' + rev ,
106- dontFailBuild : true
105+ } , {
106+ browserName : 'opera' ,
107+ version : '12.15' ,
108+ platform : 'Linux' ,
109+ build : rev ,
110+ name : 'Opera 12.15 ' + rev ,
107111 } , {
108112 browserName : 'internet explorer' ,
109113 version : '10.0' ,
You can’t perform that action at this time.
0 commit comments