@ -10,8 +10,7 @@ module.exports = function (browser, callback, url, preloadPlugins = true) {
if ( preloadPlugins ) {
initModules ( browser , ( ) => {
browser . clickLaunchIcon ( 'solidity' )
console . log ( 'called init after' )
browser . pause ( 2000 )
. pause ( 2000 )
. execute ( ( ) => {
document . getElementById ( 'autoCompile' ) . click ( )
} )
@ -26,16 +25,13 @@ module.exports = function (browser, callback, url, preloadPlugins = true) {
function initModules ( browser , callback ) {
browser . pause ( 5000 )
. click ( '#icon-panel div[plugin="pluginManager"]' )
. scrollAndClick ( '#pluginManager article[id="remixPluginManagerListItem_solidity"] button' )
. pause ( 5000 )
. scrollAndClick ( '#pluginManager article[id="remixPluginManagerListItem_udapp"] button' )
. scrollAndClick ( '#pluginManager article[id="remixPluginManagerListItem_solidityStaticAnalysis"] button' )
. scrollAndClick ( '#pluginManager article[id="remixPluginManagerListItem_debugger"] button' )
. scrollAndClick ( '#icon-panel div[plugin="fileExplorers"]' )
. click ( '[data-id="verticalIconsKindpluginManager"]' )
. scrollAndClick ( '[data-id="pluginManagerComponentActivateButtonsolidityStaticAnalysis"]' )
. scrollAndClick ( '[data-id="pluginManagerComponentActivateButtondebugger"]' )
. scrollAndClick ( '[data-id="verticalIconsKindfileExplorers"]' )
. clickLaunchIcon ( 'settings' )
. setValue ( '#gistaccesstoken ' , process . env . gist _token )
. click ( '#savegisttoken ' )
. click ( '#settingsView #Flatly ' ) // e2e tests were initially developed with Flatly. Some tests are failing with the default one (Dark), because the dark theme put uppercase everywhere.
. setValue ( '[data-id="settingsTabGistAccessToken"]' , process . env . gist _token )
. click ( '[data-id="settingsTabSaveGistToken"]' )
. click ( '[data-id="settingsTabThemeFlatly"] ' ) // e2e tests were initially developed with Flatly. Some tests are failing with the default one (Dark), because the dark theme put uppercase everywhere.
. perform ( ( ) => { callback ( ) } )
}