python-3.x Firefox不是放大或缩小驱动程序,execute_script(“document.body.style.zoom='100%'")

ruarlubt  于 2023-05-30  发布在  Python
关注(0)|答案(1)|浏览(274)

我需要一些帮助与Firefox当我放大和缩小。我使用这个函数:

driver.execute_script("document.body.style.zoom='70%'")

它只适用于Chrome。有人知道解决办法吗?我使用Python和Selenium。
Firefox中没有任何东西。Chrome工作正常。

dxxyhpgq

dxxyhpgq1#

它看起来像是一个非标准功能,Firefox没有zoomthis thread中建议的解决方案如下:

document.getElementById('x').style.MozTransform = "scale(2)";
document.getElementById('x').style.MozTransformOrigin = "0 0";

相关问题