Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How Laravel Dusk simulates HTML Geographic location

2025-01-15 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces how Laravel Dusk simulates the geographical location of HTML. It is very detailed and has certain reference value. Friends who are interested must finish reading it.

Simulate the geographic location of HTML

I once had to test a page that required the HTML site to provide a geographic location so that it could display some results. There is no direct simulation method available, so I have to rewrite the getCurrentPosition method, which will eventually be called by the page.

/ * * @ test * / public function test_geo_location () {$faker = Faker\ Factory::create (); $latitude = $faker- > latitude; $longitude = $faker- > longitude; $this- > browse (function (Browser $browser) use ($latitude, $longitude) {$browser- > visit (new Homepage)-> assertOnPage () $browser- > driver- > executeScript ("window.navigator.geolocation.getCurrentPosition = function (onSuccessCallback) {var position = {'coords': {' latitude': {$latitude}, 'longitude': {$longitude}}; onSuccessCallback (position);}") $browser- > click ('# geolocate-button')-> assertSee ('Longitude: $longitude')-> assertSee (' Latitude: Latitude')});} above is all the content of the article "how Laravel Dusk simulates HTML location". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report