mirror of
https://github.com/appium/appium.git
synced 2026-02-10 20:09:49 -06:00
fixing ci
This commit is contained in:
@@ -139,7 +139,7 @@ describe('testapp - basics - calc app 1', function () {
|
||||
|
||||
it('should be able to get text of a button', function (done) {
|
||||
driver
|
||||
.elementByClassName('UIAButton').text().should.become("ComputeSumButton")
|
||||
.elementByClassName('UIAButton').text().should.become("Compute Sum")
|
||||
.nodeify(done);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -20,7 +20,9 @@ describe('testapp - basics - calc app 2', function () {
|
||||
|
||||
it('should lookup two fields by name and populate them with ' +
|
||||
'random numbers to finally sum them up', function (done) {
|
||||
driver.elementByName('SumLabel').then(function (sumLabel) {
|
||||
driver
|
||||
.elementByName('Answer')
|
||||
.then(function (sumLabel) {
|
||||
return driver.chain()
|
||||
.then(lookup.bind(null, 1))
|
||||
.then(lookup.bind(null, 2))
|
||||
|
||||
Reference in New Issue
Block a user