Questions tagged [webbot]

41 questions
0
votes
2 answers

Can I integrate a bot into a zap in Zapier?

I am looking to create a zap in Zapier that automates all of the preparations I do preceding a tutoring appointment. I use bitpaper.io to create shared whiteboards, and would like to automate the process of creating a new whiteboard and sharing its…
0
votes
1 answer

How to read span through aria-hidden?

I've been trying for about 2 hours now with no luck to see how to read text between a span that has an "aria-hidden=true" tag. The code for the site is like this:
Any idea how you…
0
votes
1 answer

How to get text including tags with python webbot?

I have got this text in a HTML file :

Blabla

if a==b:

c = True

elif a > b+10:

c = True

else:

c = False

But when with Python webbot I try to…
gee
  • 94
  • 8
0
votes
1 answer

Why the test in web chat bot not responding

Completed build the web bot app in Microsoft Azure. It runs fine in the bot emulator locally. But in the azure , in the beginning it doesn't respond to the question asked. Now it keeps me waiting for the bot to ready. Issue is listed as: There was…
Sourav
  • 3
  • 3
0
votes
1 answer

How can I speed up finding text with Webbot in Python

I'm running a program that uses webbot in Python 3.x - the job of the program I'm writing, amongst other things, is to look for certain text patterns in a page full of text, and generate results based on if it finds a match or not. So I have a…
츄 plus
  • 488
  • 1
  • 7
  • 20
0
votes
1 answer

Get current URL using Python and webbot

Is there a way to get the current url using webbot? I looked at ways using os.environ, but it didn't work for me. I need the url of the page I am opening using webbot.Browser(), because some links are redirected and change.
Bytes2048
  • 344
  • 1
  • 6
  • 16
0
votes
1 answer

How to type into a text field in Windows Explorer?

I am trying to upload a file to a website, and when I click on the upload button (using module WebBot) it opens Windows Explorer. Am I able to output the name of the file into the File Name field? I have the full path of the file, I just need to get…
Ethen12
  • 3
  • 1
  • 2
0
votes
1 answer

can't convert webbot script to an executable

I am trying to convert a python script which uses the webbot library for web automation. As I tried to convert my running Python (3.6.5) script to an .exe file using pyinstaller I was getting an error that the path of the webbot module could not be…
Natesh bhat
  • 12,274
  • 10
  • 84
  • 125
-1
votes
1 answer

How can I open Firefox with webbot?

I'm trying learn Web Bot but I realized that no matter what I changed, Web Bot's Browser() only opens Google Chrome. How can I make the default browser Firefox?
-1
votes
1 answer

Is there a way to download a file from a website and upload it directly to Google Drive?

I am developing a python script that downloads some files from that website. Is there a way to download and upload them directly to google drive with the API? This is the snipet that download the file: def download(): #sólo para fichero de oferta…
-4
votes
2 answers

Why do i keep getting break error? I have the same problem with continue and pass

from webbot import Browser import time import pyautogui from pyautogui import * web = Browser() a == True web.go_to('http://au.yahoo.com//') web.scrolly(100) if a == True: try: web.click('Skip for now') …
1 2
3