Questions tagged [webui]

96 questions
0
votes
1 answer

why do I get a connection reset when trying to access the spark master webUI?

I am trying to install a spark stand-alone-cluster on CentOS8 and keep getting a connection reset when trying to access the webUI of the master after I start it. Am I missing something? Help please. I have: installed java: openjdk version…
0
votes
1 answer

Load testing of Web UI for 20K users

I have developed automation scripts for end to end workflows using selenium webdriver io for my web application. I want to use same scripts for load testing. My requirement is to test web UI along with backend APIs for 20K users. Can you please…
0
votes
0 answers

Drag attribute lose efficacy while adding lots of targets in Extjs 6.2.0

We had an issue that some targets in the end of the table couldn't be dragged even if they're set as draggable objects by using Ext.js 6.2. After check we found that if we increased the height of the table window, some targets became draggable; If…
hololqq
  • 11
  • 2
0
votes
0 answers

why i get the error with"SetJsonPath()" function ..?

i tried to compile the chromium code after i added the "Hello world" example from the chromium site: https://www.chromium.org/developers/webui and i get this error : **../../../chrome/browser/ui/webui/hello_world_ui.cc:21:16: error: no member named…
sapir
  • 3
  • 2
0
votes
0 answers

How to restrict the entry in html field based on the actual length

If i am getting a string of any language(English, Japanese, Chinese, French..) to a text field in my html file, how i can restrict the entry based on the actual length. For example: My html tag looks likes below:
Sams
  • 1
  • 1
0
votes
0 answers

json null values returned [snowflake]

I imported my own JSON into Snowflake (single column variant). When I ran a select my JSON column is null. I thought it might be an issue in my dataset but I also used the sample data in the…
JJM
  • 1
0
votes
1 answer

Cloudera namenode web UI is not launching

I recently installed the CDH distribution of Cloudera 6.1 to create a two node cluster. From the Cloudera Manager UI, all services are running fine. However the namenode (and datanode) web UI alone is not opening. Firewall is already disabled. Any…
ursd
  • 45
  • 6
0
votes
1 answer

how to disbale Namenode web UI?

I want to disable HDFS web UI http://localhost:50070 . I tried to disable it by below config,however it is still accessible. dfs.webhdfs.enabled false Enable or disable webhdfs. Defaults to…
0
votes
1 answer

How to share DbContext between different WebApps?

I've one missing link to understood how it could work to "connect" my EF core's DbContext to different applications in following scenario: I've got one application project which contains the whole EF Core Code first datamodel (Entities, Business…
Doc
  • 401
  • 3
  • 12
0
votes
1 answer

Can confluent control center web UI be remoted?

I installed confluent-5.1.0 on my gcp instance using the following commands: $ curl -O http://packages.confluent.io/archive/5.1/confluent-5.1.0-2.11.tar.gz $ tar xzvf confluent-5.1.0-2.11.tar.gz $ confluent-5.1.0/bin/confluent start Add line…
0
votes
1 answer

How to make a Native UI window in C++ with HTML/CSS UI in the client area

I have this program, it is apparently coded in C++, and I can see that the window(dialog box) is a native one, but in the middle of the window, it has modern looking UI elements, and when I right click on the client area(with modern UI elements) it…
user10325094
0
votes
0 answers

Can not find web elements of intranet web UI by selenium find Element by id, name..etc all the ways

i tried all the possible ways provided by selenium to find element but i am not successful. below is the code that i am using System.setProperty("webdriver.chrome.driver","C:\\chromedriver_win32\\chromedriver.exe"); WebDriver driver = new…
user310602
  • 29
  • 1
  • 7
0
votes
0 answers

How to implement WebUI object in JUnit

I'm working with Katalon. Now I want to convert the test cases into JUnit. But the problem is, the package of WebUI is not supported with JUnit. How to do this? Is this possible?
0
votes
1 answer

How to automate in-browser actions

very out of my element here but trying to find a solution. Currently, I am stuck with only one option to get a CSV file of some data, and that is by clicking on an EXPORT button from the Web UI of a webapp my company uses. This really puts a kink in…
vin_Bin87
  • 318
  • 8
  • 18
0
votes
0 answers

How I open a terminal from my program, and I want to print somthing on that terminal?

I am required to develop a stripped down version of online IDE. It will follow a client-server architecture. Client side will have three commands. CREATE RUN QUIT When the client chooses 'create' , the command would be sent to a server. The…