Nisthar

Results 68 comments of Nisthar

@admc I posted an issue for this on appium. They said the parameters used by wd for scroll command is invalid. Do you think its possible to fix this?

@imurchie This is the logs from the appium server: ``` [HTTP] --> POST /wd/hub/session/5d8de3de-6084-4a10-ac7b-0ebd470e2249/touch/scroll [HTTP] {"xoffset":10,"yoffset":200} [MJSONWP (5d8de3de)] Driver proxy active, passing request on via HTTP proxy [WD Proxy] Proxying...

@imurchie @admc I also tried the code `await new wd.TouchAction(driver).press(750,1750 ).moveTo(0,-75).perform();` This is the server logs for it. It seems like wd is not sending the correct parameters to the...

@imurchie i also tried that code. Its the same error.

@sindresorhus Doesn't this cause performance issues when the array is big?

> ```svelte > > import { onMount } from 'svelte'; > > export let src; > let showPlayer = false; > let player; > > onMount(async () => { >...

@louishuddleston > You should be able to use it in a .svelte file is there a way to change the width/height of the player?

> > I got this working locally but when I used webpack to bundle it and send it over to aws lambda, this line > > `StealthPlugin();` > > results...