Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 DalekJS 和 PhantomJS 来测试 Web 应用程序。我有重要的断言取决于浏览器语言。如果语言不是英语,这些都会失败。
任何想法如何设置 pantomjs 的默认浏览器语言?
干杯伊佐坎。
此问题已在此处进一步讨论:https ://groups.google.com/forum/#!topic/dalekjs/HHt6eoZRQc4
让我回答我自己的问题:
当您在 index.html 中使用以下代码时,问题就解决了:
<script> localStorage.lang = 'en'; </script>
因此,无论使用哪种浏览器,网站都会以英文显示。