有没有什么方法可以使用Selenium WebDriver自动遍历世界不同地区的页面

时间:2018-12-14 11:35:47

标签: java selenium-webdriver

例如,我封锁了我在巴基斯坦的网站。然后如何从巴基斯坦端自动进行操作,以检查我的网站是否被封锁。

1 个答案:

答案 0 :(得分:0)

在这种情况下,我们通过silvertunnel lib https://mvnrepository.com/artifact/org.silvertunnel-ng使用了TOR。

const express = require('express');
const router = express.Router();
const storeController = require('../controllers/storeController');
const { catchErrors } = require('../handlers/errorHandlers');

router.get('/', storeController.homePage);
router.get('/add', storeController.addStore);
router.post('/add', catchErrors(storeController.createStore));

module.exports = router;

这些文件为:https://github.com/guardianproject/jtorctl

很久以前,所以我没有更多的代码了,但是这里有几个链接可供参考:

  1. http://www.yasith.me/2017/01/selenium-webdriver-with-tor-network.html
  2. https://tor.stackexchange.com/questions/652/how-to-call-tor-browser-using-selenium-using-java