Currently, the Flottform Extension is unable to access input fields located within iframes on a scanned page. This is because document.querySelector does not work for elements inside iframes, meaning the extension cannot interact with input fields embedded within these frames. This limitation reduces the extension’s usability for pages where key input elements are within iframes.
Links / References
\
Tasks / Definition of Done
[ ] Investigate and implement a solution to access and interact with input fields within iframes.
[ ] Ensure compatibility with iframes from different origins, if feasible, or document any limitations.
Further information
This improvement will allow the extension to reach input fields nested within iframes, making it more useful on a broader range of web pages. Consider security implications and any cross-origin restrictions that may affect iframe access.
Description
Currently, the Flottform Extension is unable to access input fields located within iframes on a scanned page. This is because
document.querySelector
does not work for elements inside iframes, meaning the extension cannot interact with input fields embedded within these frames. This limitation reduces the extension’s usability for pages where key input elements are within iframes.Links / References
\
Tasks / Definition of Done
Further information
This improvement will allow the extension to reach input fields nested within iframes, making it more useful on a broader range of web pages. Consider security implications and any cross-origin restrictions that may affect iframe access.