我正在尝试使用javascript代码监视Newrelic中的应用程序, 在尝试单击单击后弹出的下拉菜单项时,我想获取该下拉菜单项的xpath。
我正在使用的Newrelic脚本中的步骤。
//Step 7 : Click Reports Option
.then(function() {
log(7, 'clickElement "Reports"');
return $browser.waitForAndFindElement(By.xpath('//*[@id="sdizr2::icon"]'),DefaultTimeout); })
.then(function (el) { el.click(); $browser.sleep(4000); })