- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Open an html file with JMP's built-in browser. How do I get the content displayed with JSL?
This removes html structure files quickly.
Thanks!
太阳的微笑
原创 大v专访 2022-09-14 20:30 福建
淘时刻
人划线
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Open an html file with JMP's built-in browser. How do I get the content displayed with JSL?
If you already have the .html you can just load it using Load Text File().
-Jarmo
6 REPLIES 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: Open an html file with JMP's built-in browser. How do I get the content displayed with JSL?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Open an html file with JMP's built-in browser. How do I get the content displayed with JSL?
Use New HTTP Request with Get method on the URL
request = New HTTP Request(
URL("https://www.jmp.com/en_fi/home.html"),
Method("Get")
);
data = request << send;
You might also have REST API endpoint you could use. If these aren't enough might have to use something like SeleniumBrowser Scripting with Python Selenium
-Jarmo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Open an html file with JMP's built-in browser. How do I get the content displayed with JSL?
This is the only result:
Thanks Experts!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Open an html file with JMP's built-in browser. How do I get the content displayed with JSL?
If you already have the .html you can just load it using Load Text File().
-Jarmo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Open an html file with JMP's built-in browser. How do I get the content displayed with JSL?
Dealing with this type of code with JAVA interactions can be complex.
u="";txt=loadtextfile(u);
In the first post, I had to upload this html file
Thanks Experts!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Open an html file with JMP's built-in browser. How do I get the content displayed with JSL?
Call AutoHotkey with JSL to copy.