Search found 29 matches

by uniadv
Thu Jan 21, 2021 12:39 pm
Forum: Beginners
Topic: How to delete an element from a webpage in chrome
Replies: 2
Views: 4900

Re: How to delete an element from a webpage in chrome

I have another issue if anyone can help. During the webpage scrapping on Chrome browser, there are few popups (in-page popup) which doesn't show up until I navigate on the pages for 30-40 seconds. When it shows up in the middle of the task, the script starts giving blank values instead of the actual...
by uniadv
Thu Jan 21, 2021 12:32 pm
Forum: Beginners
Topic: How to delete an element from a webpage in chrome
Replies: 2
Views: 4900

Re: How to delete an element from a webpage in chrome

Hi Team, I have figured out a way, I injected JS code to Chrome console to remove the irrelevant element using following code. GoSub>ExecuteJS,s1,document.getElementById("reactExitIntent").remove(); Its Subroutine program: SRT>ExecuteJS Let>HTTP_POSTJSON=1 Let>body= { "script": "%ExecuteJS_Var_2%", ...
by uniadv
Thu Jan 21, 2021 3:54 am
Forum: Beginners
Topic: How to delete an element from a webpage in chrome
Replies: 2
Views: 4900

How to delete an element from a webpage in chrome

Hello Team, I'm facing an issue. While scraping the data from a website, few elements like pop-ups, some promotional ads etc. are breaking the script which is making scraping harder. Earlier I've used to xpath to close the pop-ups but again the in-line promotional ads & irrelevant element are messin...
by uniadv
Mon Nov 09, 2020 12:50 pm
Forum: Beginners
Topic: How to open links in new tab in chrome browser
Replies: 7
Views: 6012

Re: How to open links in new tab in chrome browser

I used the above method of storing data in notepad and then opening it one by one and it worked! :D I have created an empty notepad file in some directory and using it to storing and fetching the link. //Finding the total number of result for running the loop ChromeFindElements>s1,xpath,/html/body/d...
by uniadv
Mon Nov 09, 2020 10:49 am
Forum: Beginners
Topic: How to open links in new tab in chrome browser
Replies: 7
Views: 6012

Re: How to open links in new tab in chrome browser

I have an idea, what if i can store all the links to a temporary notepad file and then open the link one after another to perform task? I think that would work. How can i achieve that? I mean how to send the data to notepad file in each new line and once its done, how to extract the link one by one?...
by uniadv
Mon Nov 09, 2020 9:47 am
Forum: Beginners
Topic: How to open links in new tab in chrome browser
Replies: 7
Views: 6012

Re: How to open links in new tab in chrome browser

Hi, Here i need to open links in new tab because by default the webpage show 20 results, on clicking "Load More" for 15 times, it loads up around 300 results. If i open the links in the same tab and again go back to previous page, it shows only default 20 results, here again i have to load all the l...
by uniadv
Thu Nov 05, 2020 8:17 am
Forum: Beginners
Topic: How to open links in new tab in chrome browser
Replies: 7
Views: 6012

How to open links in new tab in chrome browser

Hi Team, I have two questions. First: There is a webpage where i have to click on "Load More" button in order to load more results on the same page. The button is keep on visible until there is no more results to load are availiable. I use Xpath to click on "Load More" element in Chrome. How to iden...
by uniadv
Wed Oct 14, 2020 8:01 am
Forum: Beginners
Topic: How to scroll a table precisely using Image Recognition
Replies: 1
Views: 2307

How to scroll a table precisely using Image Recognition

Hi, I wanted to scroll a table precisely to do some data collection. Here i can't use Arrow Down Key to scroll because it is not precise. Here is an example table: https://i.ibb.co/bKC80Dk/22.png I was thinking to scroll it using vertical slider and use image recognition make it precise. What if we ...
by uniadv
Tue Oct 06, 2020 6:55 am
Forum: Beginners
Topic: Get table row data of only specific class
Replies: 1
Views: 2801

Get table row data of only specific class

Hi, I usually extract the table row data by counting the number of rows first and then running loop up to the counted rows: ChromeFindElements>session_1,xpath,/html/body/div/table/tbody/tr,rows let>n=0 repeat>n let>n=n+1 //......data fetch script.......// until>n=rows_count I have come-up with the c...
by uniadv
Tue Oct 06, 2020 6:36 am
Forum: Beginners
Topic: how to copy an specific html element code
Replies: 3
Views: 4209

Re: how to copy an specific html element code

It Worked! Thank you so much Marcus Tettmar I'm in love with this software and you too :wink: :wink: Where can i find its detailed documentation so my every query can be resolved directly from that? One more thing i want to ask, do i need to start new thread for every query i have or can i continue ...
by uniadv
Fri Oct 02, 2020 6:56 pm
Forum: Beginners
Topic: how to copy an specific html element code
Replies: 3
Views: 4209

how to copy an specific html element code

Hi, I have stuck at place while data-scrapping. I mostly work on google chrome and use "xpath" to perform "ChromeGetElementData" but this time i got data something like this: HTML of specific element: <a class="date js-hide-on-sending js-highlight-link past" dt="2020-10-01T13:22:18.755Z" href="/c/p3...
by uniadv
Sun Sep 27, 2020 12:48 pm
Forum: Beginners
Topic: Always keep logged in to the account in chrome browser every time i run the script
Replies: 1
Views: 3357

Always keep logged in to the account in chrome browser every time i run the script

Hi,
I run the script several times in a day and each time the script has to login to the certain accounts. Is there any way keep login in the chrome browser so the MS doesn't have to run the login script everytime? :?:

Any reference would also help.

Regards
Ushahra
by uniadv
Thu Sep 03, 2020 2:46 pm
Forum: Beginners
Topic: Changing the CSS using MS Script
Replies: 6
Views: 7320

Re: Changing the CSS using MS Script

It didn't work. Here is the code: //Chrome Example Let>CHROMEDRIVER_EXE=c:\chromedriver.exe ChromeStart>session_id ChromeNavigate>session_id,url,https://www.google.com/ wait>0.2 ChromeFindElements>session_id,class name,Fx4vi,elements ChromeGetElementData>session_id,elements_2,text,strResult MessageM...
by uniadv
Wed Sep 02, 2020 5:50 am
Forum: Beginners
Topic: Changing the CSS using MS Script
Replies: 6
Views: 7320

Re: Changing the CSS using MS Script

Hi, I have successfully injected the JavaScript inside the browser to use function like ScrollIntoView(), click() or change any CSS. Getting data using ChromeGetElementData> always works but for some element i need to extract data from Chrome's DevTool Console. I'm getting text inside the Console us...
by uniadv
Fri Aug 28, 2020 7:19 am
Forum: Beginners
Topic: Changing the CSS using MS Script
Replies: 6
Views: 7320

Re: Changing the CSS using MS Script

Hi, I have figure out the way to use JavaScript inside Console to change the CSS of different class. :D :D //Open Developer Tool: press f12 Press f12 wait>0.5 //Open Console Tab: press Esc Press Esc wait>0.5 //Using ScrollIntoView to scroll to the certain DIV element Send>document.getElementsByClass...
Sign up to our newsletter for free automation tips, tricks & discounts