Posts by Luan Ducate • 11 points
7 posts
-
0
votes1
answer288
viewsA: Click on modal with the Puppeteer Node Javascript library
It is difficult to decipher what you want with the question, but I will try to give a simple help that may help since you are starting. There is an extension of Chrome that gives you the value of…
-
1
votes1
answer481
viewsA: Select 'select' through Puppeteer
You can use evaluate to make this process. There is an extension of Chrome that gives you the value of the css selector, this in a faster way, the copy-css-selector it will add the Css Path field to…
-
0
votes1
answer61
viewsA: Difficulty capturing element. Webdriver with C#
I needed to use this code to return the value of the screen. this works using Chromiumwebbrowser, but the principle is the same, for at the end of the day is to send a JS.…
seleniumanswered Luan Ducate 11 -
0
votes2
answers395
viewsA: Click OK button of window.confirm
I know it’s an old question, but the kind of Gambita way I do is this: Puppeteer: page.evaluate(() => window.confirm = function() {}); in other systems where I edit the JS is the same thing, more…
-
0
votes0
answers280
viewsQ: How to download files using Puppeteer with headless: true
I have a system that searches download websites, some zip files, the download is working perfect when I use the mode: const browser = await puppeteer.launch({headless: False}) const page = await…
-
0
votes0
answers27
viewsQ: Tool to send commands to third party websites
I have a system that facilitates the life of some customers, it should download and export some data daily, so some customers with little computer knowledge do not need to access the systems and do…
-
0
votes2
answers355
viewsA: Angular - Page without showing previous components
When you open the component on the screen the component should actually be on the screen, to redirect to another screen have some ways( these are the ones I remember in my head, there may be many…