Rotimi Best

Results 48 comments of Rotimi Best

My use case is, it makes it easier when I am reading the logs in case of debugging to see when the request came in, then see what other things...

I am sorry this might be a silly question but can you show how `browserContext` is called. I did something like this ```javascript const browserContext = await browser.defaultBrowserContext() //Error: browserContext.setTargetInterception...

@swang2019 hahaha. Thanks. I get it. I can't wait for this feature to be out.

Exactly what I need, I just created an issue related to this.

I found a way around it, it really isn't scalable cause any change in the classes can break this code. but for the main time, this is good enough for...

@6eDesign disabling functionality is also a good idea, it makes sense that you would want to disable some dates. Here is a demo of my hacky workaround https://user-images.githubusercontent.com/31730715/142431537-dd3295db-9777-4b7d-8c01-d68cb1f777e4.mov

I found something close to it [on webback](https://web.archive.org/web/20180201160220/http://nabovyan.xyz:80/telegram-node-bot). It doesn't have all the pages but if you are favored you can find the page you specifically need there.

@ghost This is how I get the userId, first_name, last_name from the scope ($) ```javascript const firstName = $.message.chat.firstName ? $.message.chat.firstName : $.message.chat.lastName; const msg = $.message.text ? $.message.text :...

> Hi > after being done with message received, I want to redirect them to another controller of mine. > > for example after user sending `/start` , I want...