我只需要为几个 url 禁用 javascript,即:
browser.get('http://mydomain.com/page1')
# some actions with JS off
browser.get('http://mydomain.com/page2')
# some actions with JS on
browser.get('http://mydomain.com/page3')
# some actions with JS on
browser.get('http://mydomain.com/page4')
# some actions with JS off
我知道我可以在webdriver.Firefox()
关闭 JS 的情况下将 firefox 配置文件传递给,但这将适用于所有页面。而且我认为webdriver.Firefox()
为每个页面创建新实例并不是一个好主意。
解决这个问题的最佳方法是什么?蒂亚!