我在Ruby中使用Culen与Selenium Webdriver v2.53和ChromeDriver v2.24,一切顺利。现在我正在尝试将Selenium Webdriver升级到v3.0.5,然后我发现ChromeOptions的旧设置(我使用Chrome的伪造相机选项)不适用于新的Selenium Webdriver 3. 以下是我的设置:
...
private canvas : fabric.ICanvas;
...
public constructor()
this.canvas = new fabric.Canvas('c');
this.canvas.isDrawingMode = true;
this.canvas.freeDrawingBrush = new fabric['PencilBrush'](this.canvas);
...
我需要在Selenium 3中使用这个伪造的相机选项,所以如果有人知道如何解决它或如何解决它的想法,请帮助我。
谢谢。