マウスのhtmlコードを以下に示します。私は「&サービス製品」の上にカーソルを移動するためにはJavaScriptを使用してスクリプトを書くことができるようにして、isentia.mediaportalJavascript/Protractorを使用したテストスクリプトの作成方法。
をクリックしますこれは私のインタビューのため おかげ
<li class="first-item has-children dropdown products first">
<a href="#" class="dropdown-toggle root-menu">Products & Services</a>
<ul class="dropdown-menu">
<li class="first-item has-children dropdown all-products">
<a href="#" class="">Products</a>
<ul class="">
<li class="first-item has-children">
<a title="isentia.mediaportal" href="/tools/mediaportal" class="">isentia.mediaportal</a>
<ul class="">
<li class="first-item menu_blurb"><span>Our Suite of Media Monitoring Tools: All your PR & Analytics in one platform</span></li>
であるように私が作成した助けてくださいspec.jsあなたはどのwebelement上のマウス操作を実行するためにbrowser.actions()
を使用する必要が
// spec.js
describe('Protractor Demo App', function() {
it('should have a title', function() {
browser.get('http://www.isentia.com/');
expect(browser.getTitle()).toEqual('Products & Services');
var dropdown-toggle = element(by.id('dropdown-toggle'));
expect(dropdown-toggle.getText()).toEqual('Products & Services');
it('should have a title', function() {
expect(browser.getTitle()).toEqual('isentia.mediaportal');
});
element(by.css('a[href*="/tools/mediaportal"]'))
});
});
を参照してくださいあなたはこれまでにしようとしているものをご提示ください。 StackOverflowは「コード・フォー・ミー」のウェブサイトではありません。 –
私は少しのコーディングをしましたが、これが新しいかどうかは分かりません。 – Farha
ありがとうございます。 @ SeanFrancisN.Ballais – Farha