blob: b63535651561aaf2d3dfcf56942f387a44b2166a [file] [log] [blame]
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
module.exports = {
'Clones a view': function (client) {
var waitTime = client.globals.maxWaitTime,
newDatabaseName = client.globals.testDatabaseName,
baseUrl = client.options.launch_url;
client
.createDatabase(newDatabaseName)
.populateDatabase(newDatabaseName)
.loginToGUI()
.url(baseUrl + '/#/database/' + newDatabaseName + '/_design/testdesigndoc/_view/stubview')
.clickWhenVisible('.fonticon-json')
.waitForElementPresent('.prettyprint', waitTime, false)
.assert.textContains('.prettyprint', 'stub')
.clickWhenVisible('.index-list .active div.sidebar-sub-item', waitTime, true)
.clickWhenVisible('.dropdown-menu span.fonticon-files-o', waitTime, true)
.waitForElementVisible('#new-index-name', waitTime, true)
.setValue('#new-index-name', 'cloned-view')
.clickWhenVisible('.clone-index-modal .btn-cf-primary', waitTime, true)
// now wait for the sidebar to be updated with the new view
.waitForElementVisible('#testdesigndoc_cloned-view', waitTime, true)
.end();
}
};