如何将html字符串传递给无头Chrome

时间:2019-03-04 14:29:14

标签: php html google-chrome headless

我想知道是否有人知道如何将html字符串传递给无头的chrome。我正在使用PHP。

我需要从数据库中获取一些html的屏幕截图,以便我无法使用URL。

获取URL的方法是

public class Solution {

    public static void main(String[] args) {
        String boxLocation = "in room";

        if (boxLocation.toUpperCase().contains(Locations.ROOM.toString())) {
            System.out.println("The box is in the room");
        } else {
            System.err.println("The box is not in the room");
        }
    }

    enum Locations {
        ROOM,
        BUILDING,
        STREET
    }
}

有人知道语法吗,或者甚至可以用Headless做到这一点。

0 个答案:

没有答案