Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed May 10, 2018
1 parent 9af8119 commit 33b7ea0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion test-browser/helpers/contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function getCompiledContracts (browser, compiled, callback) {
function createContract (browser, inputParams, callback) {
browser.click('.runView')
.setValue('div[class^="contractActionsContainerSingle"] input', inputParams, function () {
browser.click('#runTabView button[class^="instanceButton"]').perform(function () { callback() })
browser.click('#runTabView button[class^="instanceButton"]').pause(500).perform(function () { callback() })
})
}

Expand Down
2 changes: 2 additions & 0 deletions test-browser/tests/ballot.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ function runTests (browser, testData) {
}).click('.runView')
.setValue('input[placeholder="uint8 _numProposals"]', '1')
.click('#runTabView button[class^="instanceButton"]')
.pause(500)
.click('.instance:nth-of-type(2)')
.testFunction('delegate - transact (not payable)', '0x0571a2439ea58bd349dd130afb8aff62a33af14c06de0dbc3928519bdf13ce2e',
`[vm]\nfrom:0xca3...a733c\nto:Ballot.delegate(address) 0x692...77b3a\nvalue:0 wei\ndata:0x5c1...4d2db\nlogs:0\nhash:0x057...3ce2e`,
{types: 'address to', values: '"0x4b0897b0513fdc7c541b6d9d7e929c4e5364d2db"'}, null, null)
Expand Down
3 changes: 3 additions & 0 deletions test-browser/tests/compiling.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ function testSimpleContract (browser, callback) {
browser.click('.runView')
.click('#runTabView button[class^="instanceButton"]')
.pause(500)
.click('.instance:nth-of-type(2)')
.click('#runTabView .instance div[class^="title"]')
.click('#runTabView .instance div[class^="title"]')
.testFunction('f - transact (not payable)',
Expand Down Expand Up @@ -70,6 +71,7 @@ function testReturnValues (browser, callback) {
browser.click('.runView')
.click('#runTabView button[class^="instanceButton"]')
.pause(500)
.click('.instance:nth-of-type(2)')
.testFunction('retunValues1 - transact (not payable)',
'0x79dc928d149d2ade02ab610a8ae290636222d034d4adce0bb08a68401e3d1f7f',
`[vm]\nfrom:0xca3...a733c\nto:testReturnValues.retunValues1() 0x5e7...26e9f\nvalue:0 wei\ndata:0x9ed...59eb7\nlogs:0\nhash:0x79d...d1f7f`,
Expand Down Expand Up @@ -108,6 +110,7 @@ function testInputValues (browser, callback) {
browser.click('.runView')
.click('#runTabView button[class^="instanceButton"]')
.pause(500)
.click('.instance:nth-of-type(2)')
.testFunction('inputValue1 - transact (not payable)',
'0x917a873d27d105213eaf5461e14780387ccceb66fed574f8432d1963917832ae',
`[vm]\nfrom:0xca3...a733c\nto:test.inputValue1(uint256,int256,string) 0x8c1...401f5\nvalue:0 wei\ndata:0xd69...00000\nlogs:0\nhash:0x917...832ae`,
Expand Down
1 change: 1 addition & 0 deletions test-browser/tests/units/testRecorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ module.exports = {
done()
})
})
.click('.instance:nth-of-type(2)')
.perform((client, done) => {
browser.clickFunction('set - transact (not payable)', {types: 'uint256 _p', values: '34'})
.click('i.savetransaction').modalFooterOKClick().getEditorValue(function (result) {
Expand Down

0 comments on commit 33b7ea0

Please sign in to comment.