1
我將webdriver-io與Mocha(和JavaScript)結合使用。我希望在另一個測試用例中調用特定的測試用例。如何在摩卡的TestCase中調用另一個TestCase
假設我們有下面的代碼:
describe('TestSuite', function(){
it('TestCase A', function(){
return browser
.getTitle()
.then(function(title) {
(title).should.equal('title');
});
});
it('TestCase B', function() {
// call 'TestCase A'
});
});
有沒有一種可能調用 '的TestCase A' 的 'TestCase的B' 內? 我感謝任何幫助。
您的解決方案有效。 非常感謝您的回答! :) –