https://issues.apache.org/bugzilla/show_bug.cgi?id=51750
Bug #: 51750
Summary: Retrieve all embedded resources doesn't follows IFRAME
Product: JMeter
Version: 2.5
Platform: PC
Status: NEW
Severity: normal
Priority: P2
Component: HTTP
AssignedTo: [email protected]
ReportedBy: [email protected]
Classification: Unclassified
Retrieve all embedded resources follows FRAMESETS but doesn't follow IFRAME.
Example link:
http://www.w3schools.com/html/tryit.asp?filename=tryhtml_iframe_frameborder
Bug fix:
Add the following:
1. To org.apache.jmeter.protocol.http.parser.HTMLParser:
protected static final String TAG_IFRAME = "iframe";// $NON-NLS-1$
(line 52)
2. To org.apache.jmeter.protocol.http.parser.HtmlParserHTMLParser:
} else if (tag instanceof FrameTag
|| tagname.equalsIgnoreCase(TAG_IFRAME)){
binUrlStr = tag.getAttribute(ATT_SRC);
(line 164)
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]