Selenium can't locate iframe

后端 未结 5 1489
栀梦
栀梦 2021-01-16 00:24

Selenium fails to locate the iframe by ID and Name.

This is for an automated checkout test on Shopify. The specific issue lies within the p

5条回答
  •  旧时难觅i
    2021-01-16 00:47

    Are you tried to use driver.switchTo().defaultContent(); before switchTo.frame ?

    Maybe you aren't out of all the frames

    driver.switchTo().defaultContent();
    driver.switchTo().frame("card-fields-number-b1kh6njydiv00000");
    System.out.println("Found iframe");
    

提交回复
热议问题