Giter VIP home page Giter VIP logo

Comments (5)

merlinthemagic avatar merlinthemagic commented on May 18, 2024

Almost right :). But you need to instantiate the browser, then get a window object before you start calling methods on it. Here is a working example:

error_reporting(E_ALL);
ini_set("display_errors", 1);
ini_set('max_execution_time', 120);

require_once "/var/www/html/master/MTS/EnableMTS.php";

$myUrl = "https://whoer.net";
$windowObj = MTS\Factories::getDevices()->getLocalHost()->getBrowser('phantomjs')->getNewWindow($myUrl);


$agentName = "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0";
$windowObj->setUserAgent($agentName);

Now you can start calling other methods on the windowObj. I.e. if you want a screenshot of the page you have open in the window:

//take screenshot
$screenshotData = $windowObj->screenshot();
//render it:
echo '<img src="data:image/png;base64,' . base64_encode($screenshotData) . '" />';

from mts.

hnhhl avatar hnhhl commented on May 18, 2024

Thank you for quick reply. I edited code 👍

getLocalHost()->getBrowser('phantomjs')->getNewWindow($myUrl); $agentName = "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0"; $windowObj->setUserAgent($agentName); $screenshotData = $windowObj->screenshot(); echo '

'; $domData = $windowObj->getDom(); echo $domData; ?>

Now I got the screenshot taken from whoer.net (website to check current user agent) , but the user agent on that screenshot and from domData is "Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) PhantomJS/2.1.1 Safari/538.1"

It's not working for me... :(

from mts.

merlinthemagic avatar merlinthemagic commented on May 18, 2024

Got it. The reason is that setting the url when instantiating a new window will call setURL() before the agent is changed. I should have realized you wanted the agent reflected on the initial connection.
Here is a corrected example:

error_reporting(E_ALL);
ini_set("display_errors", 1);
ini_set('max_execution_time', 120);

require_once "/var/www/html/master/MTS/EnableMTS.php";

//do not set URL while instantiating
$windowObj = MTS\Factories::getDevices()->getLocalHost()->getBrowser('phantomjs')->getNewWindow();

//set agent
$agentName = "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0";
$windowObj->setUserAgent($agentName);

//now set url
$myUrl = "https://whoer.net";
$windowObj->setURL($myUrl);

//window now executes requests with correct agent
$screenshotData = $windowObj->screenshot();
echo '<img src="data:image/png;base64,' . base64_encode($screenshotData) . '" />';

from mts.

hnhhl avatar hnhhl commented on May 18, 2024

Thank you for answer. My problems is now resolved !!!
This is the best source I've ever known.
The last question, can I set time zone and use proxy to connect to $myurl ?

from mts.

merlinthemagic avatar merlinthemagic commented on May 18, 2024

Currently not possible using MTS. You would have to modify the options when phantomJS is started.

See: documentation
Specifically the options:

--proxy=address:port
--proxy-type=[http|socks5|none]

Append the command on line 45 of Browser.php

With the proxy settings. I will consider implementing it as a feature later.

from mts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.