This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ObjectLocationDivCustomViewAdapter : DivCustomContainerViewAdapter { | |
| private lateinit var yandexMapView: MapView | |
| private lateinit var yandexMap: Map | |
| private fun startMap() { | |
| MapKitFactory.getInstance().onStart() | |
| yandexMap = yandexMapView.map | |
| yandexMap.isZoomGesturesEnabled = false | |
| yandexMap.isScrollGesturesEnabled = false | |
| yandexMap.isRotateGesturesEnabled = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # encoding: utf-8 | |
| # capybara test for https://www.paypal.com/ru/webapps/mpp/home | |
| require 'rubygems' | |
| require 'capybara' | |
| require 'capybara/rspec' | |
| Capybara.configure do |c| | |
| c.current_driver = :selenium | |
| end |