Questions tagged [webbot]
41 questions
0
votes
2 answers
Python webbot showstopper, can not use webbot because of Chrome driver
Its been a long while since i have been on this platform so here goes. I have just started using pythons webbot library. I think it is a pretty cool library from a developer stand point. It pretty much is way better than most for basic online…
0
votes
2 answers
WebDriverException: unknown error: cannot find Chrome binary error when trying to run webbot using Selenium and ChromeDriver
I'm trying to automate a process using selenium. When I run the code it gives me the error bellow.
WebDriverException: unknown error: cannot find Chrome binary
(Driver info: chromedriver=2.39.562718…

andyandrade
- 1
- 1
- 1
- 1
0
votes
1 answer
Keeping some button always present in the BOT
I have a scenario where I want my help and the main menu button is always present which comes with a welcome message and even if I am in between some other activity within the bot I can come and click on that button any time in the bot. Please…

Bipin Bhandari
- 652
- 4
- 9
- 23
0
votes
1 answer
Buttons is not working properly BOT Framework when text is long
I am creating the buttons dynamically in the BOT framework. The issue I am facing is that if the text of the button is coming long it's not coming as a button but as a list of text and I am not even able to click them because on the click of each…

Bipin Bhandari
- 652
- 4
- 9
- 23
0
votes
2 answers
Problem with detecting if link is invalid
Is there any way to detect if a link is invalid using webbot?
I need to tell the user that the link they provided was unreachable.
user16989126
0
votes
1 answer
QNAMaker Bot - Incorrect DefaultAnswer returned when testing in Webchat
I have deployed a simple QNA bot and published a knowledgebase via QNAMaker. The bot is working insofar as it is returning the expected answers to questions defined in the KB, both when tested in QNAMaker.ai and the Webchat channel. Unfortunately, I…

yakherder
- 1
- 1
0
votes
0 answers
How to suppress warnings from webbot?
I made a really simple script with Webbot to access a page, it works fine but there are some warnings I'd like to suppress.
From what I've looked they are from the ChromeDriver but I have no idea how to deal with them.
form webbot import…

Elmo
- 1
- 1
0
votes
0 answers
Asisgn a value to randomly selected option in python
I'm currently trying to make a web automation script in python using webbot. My issue is that I made a list which contains cities/towns. The script later randomly selects a city from this list. I need to assign each city a postcode. How would I do…

Josh Andrews
- 23
- 2
0
votes
0 answers
webscraping with webbot returns the wrong thing
I have this simple html code:
This is " a test"
i want to get " a test" by it's xpath using webbot the code that seems to "work"…
Pigi
- 1
- 4
0
votes
1 answer
Selenium(PYTHON) add variable that converts number into syntax
So i have a code that changes the text of a class, but instead of manually entering the number, i would like the number to be equal to whatever X is, and convert that number into a string if thats what needs to be done
try:
newButton =…

ExoticLegend714
- 59
- 5
0
votes
0 answers
Selenium(PYTHON) Change An Elements Text
i think the title is pretty self explanatory, i was just wondering how you can use
driver.find_element_by_class_name("ClassWithText")
and change the text inside the class

ExoticLegend714
- 59
- 5
0
votes
1 answer
How to press multiple keys at once using webbot Browser on Python
I am using Browser from webbot to do some things on a browser.
However, I ran into a problem when I am trying to press 2 keys at once such that key number 1 is pressed down, then key number 2 is pressed down then lifted up, then key number 1 is…

CEO1111
- 37
- 5
0
votes
1 answer
Trying to run Python3 script that uses Webbot from a BAT file. How do I get rid of this terminal?
I made a Python3 script that uses Webbot as a screenscraper. The script opens chrome, goes to a website and logs in.
While trying to automate this further and make it run when I log into Windows 10, I made a BAT file to run the python script.…

Goggies
- 33
- 4
0
votes
1 answer
How to get $0 value in Webbot using python
Please find below code am trying to get Seller Proceeds value in Website, but it has $0, when i tried in console $0.value am getting 598.08 but am getting Calculate when i tried using this
sel_proc =…

Sharath
- 61
- 11
0
votes
2 answers
Select value from drop-down - Python Webbot
Hi All, I'm tring to select a value from drop-down list but its not working.
This is the dropdown that Im trying to select
Below is my script.
'''
from webbot import Browser
import time
web =…

Pawan
- 1
- 2