我想使用Node.js
来模拟移动浏览器,这意味着所有移动浏览器功能都应该在JavaScript
方(客户端)上可用,即使它们被模拟了。
网页应该认为它们是在移动环境中加载的。例如,如果我们有一个网页上写着:
if ('ontouchstart' in window) {
document.body.innerHTML = "Mobile";
} else {
document.body.innerHTML = "Not mobile";
}
...然后在模拟中加载页面时,正文内容应为Mobile
。
这样做的正确方法是什么?我会避免简单地使用PhantomJS(或任何类似的)和执行一个脚本来执行:
window.ontouchstart = function () {};
我正在考虑使用JSDom,但看起来没有简单的方法来说mobile:true
会添加所有这些属性。
创建可以展示这些API
的浏览器的最佳方式是什么,模拟移动浏览器?
从Node.js方面,我想与浏览器仿真进行通信,并获得一些结果。我们假设我们有一个index.html
页面,如下所示:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<script>
if ('ontouchstart' in window && window.orientation) {
document.body.innerHTML = "Mobile";
} else {
document.body.innerHTML = "Not mobile";
}
</script>
</body>
</html>
使用node-horseman
(使用Phantomjs),我们可以执行以下操作:
const Horseman = require('node-horseman');
const horseman = new Horseman();
const iPhone6 = "Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5376e Safari/8536.25";
horseman
.userAgent(iPhone6)
.open('index.html')
.evaluate(function () {
return document.body.innerHTML;
})
.then(html => {
console.log(html);
})
.evaluate(function () {
return navigator.userAgent;
})
.then(ua => {
console.log(ua);
})
.close();
这会输出Not mobile
,而用户代理是我提供的用户代理(iPhone 6)。预计将是Mobile
。
它只是表明window.orientation
不可用,因为它不是移动浏览器。
答案 0 :(得分:5)
正如您所提到的Phantom和Horseman我相信您需要一个支持移动设备的浏览器自动化框架。您可以使用带有铬的硒(ChromeDriver)代替Phantom,而chrome则支持移动仿真。
在这里您可以找到NodeJS的selenium客户端:https://www.npmjs.com/package/selenium-webdriver 镀铬驱动硒:https://sites.google.com/a/chromium.org/chromedriver/
在移动仿真模式下启动chrome:
var webdriver = require('selenium-webdriver');
var capabilities = {
browserName: 'chrome',
chromeOptions: {
mobileEmulation: {
deviceName: 'Apple iPhone 6'
}
}
};
var driver = new webdriver
.Builder()
.withCapabilities(capabilities)
.build();
您可在此处找到可用设备列表:https://stackoverflow.com/a/41104964/893432
您还可以定义自定义设备:https://sites.google.com/a/chromium.org/chromedriver/mobile-emulation
如果你想让它无头,最新的chrome版本支持它: https://chromium.googlesource.com/chromium/src/+/lkgr/headless/README.md
您还可以使用selenium在真实的Android设备或模拟器上运行测试: https://sites.google.com/a/chromium.org/chromedriver/getting-started/getting-started---android
答案 1 :(得分:1)
只是 2021 年的更新:
要在 selenium-webdriver 中使用仿真模式,现在正确的做法是:
var webdriver = require('selenium-webdriver'),
var driver = new webdriver.Builder()
.forBrowser('chrome')
.setChromeOptions(new chrome.Options()
.setMobileEmulation({deviceName: 'Apple iPhone 5'})
//.setMobileEmulation({deviceName: ‘Pixel 2 XL’}) //<--- tested
//.setMobileEmulation({deviceName: ‘Google Nexus 7’})
//.addArguments('start-maximized')
)
.build();
//Rest of the operations will be done in emulation mode
// this links shows what user agent you are currently using
driver.get('https://www.whatismybrowser.com/detect/what-is-my-user-agent');
driver.quit();