admin管理员组文章数量:1340938
This is my first time using puppeteer for some light automation. I am running into an issues trying to click a button that is located within an iframe.
Here is my code:
await page.waitForSelector('iframe');
const frameElement = await page.$(
'iframe[src=".html"]',
);
const frame = await frameElement.getFrame();
The getFrame()
errors because the frameElement is return as a JSHandle@node
.
The selectors I have access to for the iframe are src
and title
. As you can see I am using src
.
I have searched and searched for how to do this but none of the examples seem to work for me.
I am stuck so if anyone has any advice, solution, or direction I would appreciate it.
Thank you,
Joe
This is my first time using puppeteer for some light automation. I am running into an issues trying to click a button that is located within an iframe.
Here is my code:
await page.waitForSelector('iframe');
const frameElement = await page.$(
'iframe[src="https://ibx.key./ibxolb/login/client/index.html"]',
);
const frame = await frameElement.getFrame();
The getFrame()
errors because the frameElement is return as a JSHandle@node
.
The selectors I have access to for the iframe are src
and title
. As you can see I am using src
.
I have searched and searched for how to do this but none of the examples seem to work for me.
I am stuck so if anyone has any advice, solution, or direction I would appreciate it.
Thank you,
Joe
Share Improve this question asked Dec 20, 2019 at 21:00 JoeJoe 7955 gold badges12 silver badges26 bronze badges2 Answers
Reset to default 7If you're accessing the iframe from URL / sites beside *.key.
or *.keybank.
, then you can't open the iframe because of CSP directive.
Open chrome developer console and if you can see this message, then it's because CSP directive not allowing you to access the iframe site URL.
Refused to display 'https://ibx.key./ibxolb/login/client/index.html' in a frame because an ancestor violates the following Content Security Policy directive: "frame-ancestors *.key. *.keybank.".
And if you're not seeing any message like above, you can try like this
const frame = page.frames().find(frame => frame.url() === 'https://ibx.key./ibxolb/login/client/index.html');
const clickLogin = await frame.click('.login-button-space')
I was able to solve my issue.
First I got all of the frames listed on the page like so:
var frames = (await page.frames());
Then I ended up looping through the frames looking for a specific title.
exports.getFrame = async function(frames, ssoFrameTitle) {
let selectedFrame;
for(let i = 0 ; i < frames.length ; ++i) {
let frameTitle = await frames[i].title();
if(frameTitle === ssoFrameTitle) {
selectedFrame = frames[i];
break;
}
}
return selectedFrame;};
Once I locate the frame object I returned it from the function to locate and click the button.
本文标签: javascriptTrying to click a button within an iframe with puppeteerStack Overflow
版权声明:本文标题:javascript - Trying to click a button within an iframe with puppeteer - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743621347a2511578.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论