test(frame): correct terminology in URL fragment test (#6416)

Bug: #6398
This commit is contained in:
campersau 2020-09-14 13:42:32 +02:00 committed by GitHub
parent bb1c5215a8
commit 083ea41e94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
<iframe src='./frame.html&test=fragment'></iframe>
<iframe src='./frame.html?param=value#fragment'></iframe>

View File

@ -263,7 +263,7 @@ describe('Frame specs', function () {
expect(page.frames().length).toBe(2);
expect(page.frames()[1].url()).toBe(
server.PREFIX + '/frames/frame.html&test=fragment'
server.PREFIX + '/frames/frame.html?param=value#fragment'
);
});
});