Questions tagged [webbot]
41 questions
3
votes
2 answers
is there any way that a azure chatbot can query the databse and return answer from the database? may be using qna maker or luis?
I am trying to build a chat bot which queries a database and returns answer from the database depending on the question asked. is there any way to connect the azure chat bot to the database say azure SQL database?
2
votes
1 answer
Error about Selenium version using Python's webbot
I'm using Python 3.9 on macOS. I'm trying to start using webbot, but every time I try, I get this error:
selenium.common.exceptions.SessionNotCreatedException: Message: session not created
exception: Missing or invalid capabilities
(Driver info:…

eje211
- 2,385
- 3
- 28
- 44
2
votes
1 answer
Bot Framework Emulator Error: POST 500 directline postActivity
I am trying to connect Microsoft Bot Emulator to my remote bot in Azure.
When I run my bot locally it works as expected however when I set a new configuration to connect to "Web app bot" in Azure I get error as below
[16:05:17]Error: The bot is…

klam
- 57
- 9
1
vote
0 answers
opening FireFox via webbot python library
i'm trying to open the Browser (FireFox) via webbot python library. But idk, where i'm mistaking.
My code:
from webbot import Browser
web = Browser()
output:
Traceback (most recent call last):
File "/home/herzeg/Desktop/OLV/OLV/virus.py", line 3,…

uzHerzeg Herzeg
- 17
- 2
1
vote
1 answer
touch element using selenium
I have some problem with selenium (chromeDriver).
There is a webpage which is designed for mobile, that page have two inputs. When you click on each of them an embedded keyboard(or virtual keyboard) will pop up and end user can use the keyboard…

sajad
- 87
- 1
- 5
1
vote
2 answers
How we can get data from Website using Webbot
Trying Web.find_elements but it is throwing an error
AttributeError: 'Browser' object has no attribute 'find_elements'
Code
from webbot import Browser
from bs4 import BeautifulSoup
web =…

Sharath
- 61
- 11
1
vote
1 answer
Web Scraping using webbot
I am trying to create a simple program to login to a webpage using my credentials and grab the total amount left of flex dollars I have in my account for college. Starting at the log in page, I log in, and am redirected to the page of interest, and…

Kirency
- 41
- 6
1
vote
1 answer
Python Webbot: How can I tell him to push this button?
I am currently trying to run this line of code with Webbot in Python
from webbot import Browser
bot = Browser()
bot.click(classname = "pageChangeNext")
in order to push this button, but it won't press it.

Samqi
- 13
- 4
0
votes
1 answer
find element_by(by="tagName", value="body")
I Have a selenium bot I'm working on that works fine.
But I can't find the accurate syntax I shall use to grep the body element.
To reach an element I generally just use something like this:
canvas = driver.find_element("id", "canvas")
But for the…

William Knutsson
- 11
- 3
0
votes
1 answer
Python webbot library, example returns "session not created exception: Missing or invalid capabilities"
I'm trying to run this simple Python webbot example on Ubuntu 22.04:
from webbot import Browser
web = Browser()
web.go_to('google.com')
web.type('hello its me') # or web.press(web.Key.SHIFT + 'hello its…

rare77
- 297
- 6
0
votes
1 answer
Python with Webbot, not sure how to click the button of the chrome PDF viewer
I have a Python app navigating through a website using Webbot. On the final page, it renders and streams a PDF to the browser (without an endpoint URL). This is displayed in the chrome PDF viewer but I need to download this.
I am unsure of how to go…

Jason Orman
- 13
- 4
0
votes
1 answer
Click "OK" on Error Loading Extension pop up using python webbot
Trying to click "OK" on a pop up using a webbot script in order to pull down a file from a website. On one machine the following code worked:
from webbot import Browser
import time
import keyboard
import threading
def push_ok_button():
…

Kristian
- 3
- 2
0
votes
0 answers
In fix at Microsoft - Name with multiple word does not display fully in chat message
So, I'm working on a azure C# web-bot (Company Communicator).
This web-bot send message in a Teams channel.
On PC and Android, when a message is sent the name of the bot is right for exemple: "My multi name app".
But on iPhone, my client send me an…

Mart
- 49
- 9
0
votes
0 answers
In Botframework Webchat how do I customize color for button in Adaptive cards
Is there any way to change the color of buttons in adaptive cards? I don't know how to customize adaptive cards in the webchat.html file. I tried with 'HostConfig' but I am unable to change the color of button text and button color

nileena shaju
- 11
- 3
0
votes
0 answers
How do I edit an online xlsx file in python?
I need to edit this file with any python module:
https://1drv.ms/x/s!Aq2lKlhSyqf5mjiC6CYkC1QGXNSy?e=Wh88AT
but I don't want to download it edit and then upload again. I tried using webbot, but I couldn't even find the 'editing mode' button.
import…

AzlanCoding
- 209
- 2
- 11